Spaces:
Sleeping
Sleeping
Create pytest.ini
Browse files- pytest.ini +20 -0
pytest.ini
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tool:pytest]
|
| 2 |
+
testpaths = tests
|
| 3 |
+
python_files = test_*.py
|
| 4 |
+
python_classes = Test*
|
| 5 |
+
python_functions = test_*
|
| 6 |
+
addopts =
|
| 7 |
+
--verbose
|
| 8 |
+
--tb=short
|
| 9 |
+
--strict-markers
|
| 10 |
+
--disable-warnings
|
| 11 |
+
--color=yes
|
| 12 |
+
markers =
|
| 13 |
+
unit: Unit tests
|
| 14 |
+
integration: Integration tests
|
| 15 |
+
ocr: OCR functionality tests
|
| 16 |
+
soap: SOAP generation tests
|
| 17 |
+
slow: Slow running tests
|
| 18 |
+
filterwarnings =
|
| 19 |
+
ignore::UserWarning
|
| 20 |
+
ignore::DeprecationWarning
|