mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-30 20:34:38 +01:00
Setup pytest
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
0e9897169c
commit
d8cc26a44a
2 changed files with 7 additions and 1 deletions
4
pytest.ini
Normal file
4
pytest.ini
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[pytest]
|
||||||
|
python_files = test_*
|
||||||
|
python_classes = *Tests
|
||||||
|
python_functions = test_*
|
4
setup.py
4
setup.py
|
@ -35,7 +35,9 @@ except ImportError:
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
docs_requires = []
|
docs_requires = []
|
||||||
tests_requires = []
|
tests_requires = [
|
||||||
|
"pytest>=5.3.2"
|
||||||
|
]
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"urllib3>=1.25.7"
|
"urllib3>=1.25.7"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue