-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpytest.ini
More file actions
31 lines (26 loc) · 847 Bytes
/
pytest.ini
File metadata and controls
31 lines (26 loc) · 847 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
[pytest]
# Full pytest configuration for local development
# Use with: pytest
# Test paths
testpaths = tests
# Markers
markers =
integration: marks tests as integration tests (may be slow)
requires_sirf: marks tests that require SIRF to be installed
requires_simind: marks tests that require SIMIND to be installed
ci_skip: marks tests to skip in CI environments
unit: marks tests as unit tests (fast, no external dependencies)
slow: marks tests that take significant time to run (>10 seconds)
# Options for local development - run all available tests
addopts =
-v
--tb=short
--strict-markers
--durations=10
# Output
console_output_style = progress
junit_family = xunit2
# Ignore warnings from external packages
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning