diff --git a/.travis.yml b/.travis.yml index 6282c2e..1b3754c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,10 +20,10 @@ jobs: python: "pypy3.5" before_script: - pypy3 -m pip install -r requirements.txt - - pypy3 -m pip install pytest coverage pytest-cov + - pypy3 -m pip install pytest script: - pypy3 setup.py install - - pypy3 setup.py test + - pytest after_script: - echo "Do nothing" - stage: test diff --git a/setup.cfg b/setup.cfg index 54e5180..a0f4d85 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,4 +39,3 @@ universal = 0 [options] python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.* -test_suite = tests