-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpytest.ini
More file actions
36 lines (32 loc) · 756 Bytes
/
pytest.ini
File metadata and controls
36 lines (32 loc) · 756 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
[pytest]
# Pytest configuration for Lazy_Bird project
# Test discovery
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
-l
-ra
--capture=no
--tb=short
--cov=scripts
--cov=web/backend
--cov-report=html
--cov-report=term-missing
--cov-report=json
--cov-fail-under=50
# Markers for organizing tests
markers =
unit: Unit tests
integration: Integration tests
e2e: End-to-end tests
slow: Slow running tests
requires_godot: Tests that need Godot installed
requires_docker: Tests that need Docker
# Ignore warnings from dependencies
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning