diff --git a/.travis.yml b/.travis.yml index c97e5cd15ce5fdb749ee30a9f8cc981b1fad6f4b..1909d7a1232237203099f9a80b6c9ddefea57999 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,6 +44,14 @@ jobs: after_script: - coverage xml - ./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT + - stage: test + python: "nightly" + script: + - bash tests/test_os/test_hang_until_sig.sh + - coverage run -m nose2 -v + after_script: + - coverage xml + - ./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT - stage: test python: "pypy3.5" script: diff --git a/setup.cfg b/setup.cfg index 61815713b70c63a5006d7f536116859a5af8dce7..27d381a7764b208e38be09432a424ba31e5ddfed 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,7 @@ long-description = file: README.md long-description-content-type = text/markdown; charset=UTF-8 license_files = LICENSE author = Piotr MaĹlanka -author_email = piotrm@smok.co +author_email = piotr.maslanka@henrietta.com.pl description = Utilities for writing servers in Python url = https://github.com/piotrmaslanka/satella project-urls = diff --git a/setup.py b/setup.py index 309535095a80cf212f03b051b0a567fcf5c6f449..0f4d265ab9c14dd16997ff5f4b7941fae93b89a0 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,6 @@ setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server', install_requires=[ 'psutil' ], - tests_require=[ - "nose2", "mock", "coverage" - ], - test_suite='nose2.collector.collector', python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', extras_require={ 'HTTPJSONSource': ['requests'],