-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
33 lines (29 loc) · 781 Bytes
/
pytest.ini
File metadata and controls
33 lines (29 loc) · 781 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
[pytest]
# Test discovery patterns
python_files = test_*.py *_test.py
python_classes = Test* *Tests
python_functions = test_*
# Test execution settings
testpaths =
GoogleADK/Butler_Basil/evals
GoogleADK/Data_Daniel/evals
GoogleADK/FileOps_Freddy/evals
GoogleADK/Jira_Johnny/evals
GoogleADK/Scrum_Sam/evals
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
-p no:warnings
# Markers for organizing tests
markers =
agent_evaluation: Tests for evaluating agent capabilities
unit: Unit tests
integration: Integration tests
slow: Tests that take a long time to run
skip_ci: Tests to skip in CI/CD
# Coverage settings (if pytest-cov is installed)
# --cov=GoogleADK
# --cov-report=term-missing
# --cov-report=html