-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
41 lines (34 loc) · 1.05 KB
/
pytest.ini
File metadata and controls
41 lines (34 loc) · 1.05 KB
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
40
41
[pytest]
# PyCharm IDE Compatible Pytest Configuration
# Fixes web3 package plugin conflicts and ensures proper test discovery
# Disable problematic plugins
addopts = -p no:web3 -p no:anchorpy
--tb=short
--strict-markers
--disable-warnings
--no-header
--no-summary
-q
# Test discovery configuration
testpaths = tests/unit
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Ignore integration test files (these should be run as normal Python scripts)
collect_ignore =
tests/integration/
run_workflow_integration.py
run_memecoin_processor_integration.py
# Set PYTHONPATH for imports
pythonpath = .
# Async test support
asyncio_mode = auto
# Markers for test categorization
markers =
integration: marks tests as integration tests (deselect with '-m "not integration"')
unit: marks tests as unit tests
slow: marks tests as slow running
requires_api: marks tests that require external API access
requires_env: marks tests that require environment variables
# Minimum version
minversion = 7.4