Skip to content
Snippets Groups Projects
Commit ebd07cc1 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

since tests are ran manually, do not specify them in setup.py

parent 57464f60
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,14 @@ jobs: ...@@ -44,6 +44,14 @@ jobs:
after_script: after_script:
- coverage xml - coverage xml
- ./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT - ./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 - stage: test
python: "pypy3.5" python: "pypy3.5"
script: script:
......
...@@ -5,7 +5,7 @@ long-description = file: README.md ...@@ -5,7 +5,7 @@ long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8 long-description-content-type = text/markdown; charset=UTF-8
license_files = LICENSE license_files = LICENSE
author = Piotr Maślanka author = Piotr Maślanka
author_email = piotrm@smok.co author_email = piotr.maslanka@henrietta.com.pl
description = Utilities for writing servers in Python description = Utilities for writing servers in Python
url = https://github.com/piotrmaslanka/satella url = https://github.com/piotrmaslanka/satella
project-urls = project-urls =
......
...@@ -8,10 +8,6 @@ setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server', ...@@ -8,10 +8,6 @@ setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server',
install_requires=[ install_requires=[
'psutil' '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.*', python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
extras_require={ extras_require={
'HTTPJSONSource': ['requests'], 'HTTPJSONSource': ['requests'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment