forked from SecureAgentTools/AgentVault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
30 lines (25 loc) · 746 Bytes
/
pytest.ini
File metadata and controls
30 lines (25 loc) · 746 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
[pytest]
# Add component directories and project root to Python path
# --- MODIFIED: Simplify pythonpath ---
pythonpath = .
# --- END MODIFIED ---
# Log all test runs
log_cli = true
log_cli_level = INFO
# Test file pattern
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Asyncio mode
asyncio_mode = auto
# Filter out specific warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::pytest.PytestConfigWarning
# --- ADDED: Ignore freezegun warning if necessary ---
# ignore:.*is deprecated since freezegun.*:DeprecationWarning
# --- END ADDED ---
# --- REMOVED: Explicit plugin loading ---
# addopts = -p freezegun.pytest_plugin
# --- END REMOVED ---