Run tests with pytest

pull/146/head
Emily 2024-07-28 18:51:45 +01:00
parent b59658ba20
commit b57037bd82
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,6 @@
pytest>=7.0.0
nose>=1.3.7
mock>=2.0.0
coverage>=4.3
flake8>=3.2
tox>=2.7.0
tox>=2.7.0

View File

@ -27,7 +27,6 @@ setup(
entry_points={
'console_scripts': ['gixy=gixy.cli.main:main'],
},
test_suite='nose.collector',
packages=find_packages(exclude=['tests', 'tests.*']),
classifiers=[
'Development Status :: 3 - Alpha',

View File

@ -6,7 +6,7 @@ skip_missing_interpreters = True
deps =
-rrequirements.txt
-rrequirements.dev.txt
commands = nosetests -v
commands = pytest -v
[testenv:flake8]
deps =