-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
25 lines (24 loc) · 947 Bytes
/
pytest.ini
File metadata and controls
25 lines (24 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short
markers =
integration: marks tests that require real device hardware
slow: marks tests that are slow to run
unit: marks tests that can run without hardware
restart: marks tests that require device restart
http: marks tests that require HTTP
https: marks tests that require HTTPS
basic_operation: marks tests that require basic operations
session: marks tests that require session management
auth: marks tests that require authentication
error: marks tests that require error handling
concurrency: marks tests that require concurrency
transport: marks tests that require transport layer
# Warning configuration
filterwarnings =
default
# Ignore the urllib3 warning about unverified HTTPS
ignore:Unverified HTTPS request:urllib3.exceptions.InsecureRequestWarning