diff --git a/.travis.yml b/.travis.yml index 6282c2e53a290c2c9310cbd62c616ef560224a23..1b3754ceec25ff88560ec02ab62c98935646eecb 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 54e5180462ee826ee8f461873e36b9ff58589e02..a0f4d8507f57be6a2cbf45eb8ed2a38fdc693690 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