-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (22 loc) · 863 Bytes
/
pytest.ini
File metadata and controls
22 lines (22 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short --strict-markers
markers =
unit: fast unit tests with no external dependencies
integration: tests that use external resources (databases, APIs, etc.)
expensive: tests that may incur costs (cloud APIs, etc.)
visual: tests requiring manual visual verification
ssh_required: tests requiring SSH access
aws_required: tests requiring AWS credentials
azure_required: tests requiring Azure credentials
gcp_required: tests requiring GCP credentials
real_world: tests using real external resources
slow: tests that take longer than 30 seconds
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::UserWarning:paramiko.*
ignore::UserWarning:cryptography.*