forked from johnsamuelwrites/multilingual
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
31 lines (26 loc) · 899 Bytes
/
pytest.ini
File metadata and controls
31 lines (26 loc) · 899 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
[pytest]
# Pytest configuration for multilingual programming language tests
testpaths = tests
python_files = test_*.py *_test.py
python_classes = Test*
python_functions = test_*
# Markers for backend-specific tests
markers =
wasm: Tests specific to WASM backend execution
fallback: Tests for Python fallback execution
correctness: Correctness validation tests
performance: Performance benchmark tests
integration: Integration tests across components
corpus: Corpus project tests (real-world examples)
multilingual: Tests for multilingual support
slow: Marks tests as slow (deselect with '-m "not slow"')
# Minimum Python version
minversion = 3.12
# Verbose output
addopts =
-ra
--strict-markers
--tb=short
--disable-warnings
# pytest-asyncio: avoid deprecation warning about upcoming default change.
asyncio_default_fixture_loop_scope = function