Add pytest and pytest-xdist to the requirements, needed for unit tests

This commit is contained in:
mbanth
2021-05-26 13:21:58 +01:00
parent 7b433a40fc
commit 33fcac9c47
2 changed files with 4 additions and 0 deletions

View File

@@ -14,6 +14,8 @@ setuptools.setup(
packages=setuptools.find_packages(),
install_requires=[
'flake8~=3.8',
'pytest~=6.0',
'pytest-xdist~=1.34',
],
dependency_links=[
],

View File

@@ -18,6 +18,8 @@
# same modules should appear in the setup.py list as given below.
flake8==3.8.3
pytest==6.0.0
pytest-xdist==1.34.0
# Development dependencies
#