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

add tests for Python 3.9, fix setup.cfg

parent 4cb581b3
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,13 @@ jobs:
after_script:
- coverage xml
- ./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT
- stage: test
python: "3.9"
script:
- pytest -n 8 --cov=satella
after_script:
- coverage xml
- ./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT
- stage: test
python: "pypy3.5"
script:
......
......@@ -22,7 +22,6 @@ classifier =
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: POSIX
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
......@@ -41,3 +40,10 @@ universal = 1
install_requires =
psutil
python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
extras_require =
HTTPJSONSource = requests
YAMLSource = pyyaml
TOMLSource = toml
FasterJSON = ujson
cassandra = cassandra-driver
opentracing = opentracing
......@@ -4,13 +4,5 @@ from satella import __version__
setup(packages=find_packages(include=['satella', 'satella.*']),
version=__version__,
test_suite='nose2.collector.collector',
extras_require={
'HTTPJSONSource': ['requests'],
'YAMLSource': ['pyyaml'],
'TOMLSource': ['toml'],
'FasterJSON': ['ujson'],
'cassandra': ['cassandra-driver'],
'opentracing': ['opentracing']
}
test_suite='nose2.collector.collector'
)
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