-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathpytest.ini
More file actions
38 lines (32 loc) · 706 Bytes
/
pytest.ini
File metadata and controls
38 lines (32 loc) · 706 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
37
[pytest]
# Pytest configuration for Math-To-Manim
# Test discovery patterns
python_files = test_*.py *_test.py
python_classes = Test*
python_functions = test_*
# Directories to search for tests
testpaths = tests
# Directories to ignore during test discovery
norecursedirs =
.git
.venv
venv
env
__pycache__
*.egg-info
.pytest_cache
media
KimiK2.5Swarm
examples
# Add options
addopts =
-v
--strict-markers
--tb=short
--capture=sys
# Markers
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
live: marks tests that require API calls
unit: marks tests as unit tests