-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpytest.ini
More file actions
39 lines (32 loc) · 1002 Bytes
/
Copy pathpytest.ini
File metadata and controls
39 lines (32 loc) · 1002 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[pytest]
# Pytest configuration for Flight Control MCP Server tests
# Test discovery
testpaths = .
python_files = test_*.py *_test.py
python_classes = Test*
python_functions = test_*
# Test markers
markers =
unit: Unit tests (fast, no external dependencies)
integration: Integration tests (may require live Flight Control instance)
slow: Slow tests that take more than a few seconds
live: marks tests that require a live Flight Control instance
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
# Minimum version
minversion = 6.0
# Logging
log_cli = true
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(name)s: %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
# Coverage (if pytest-cov is installed)
# addopts = --cov=resource_queries --cov=main --cov=cli --cov-report=html --cov-report=term
# Filterwarnings
filterwarnings =
ignore::urllib3.exceptions.InsecureRequestWarning
ignore::DeprecationWarning