File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ install-editable = "python -m pip install -e ."
220220dev-setup = " python -m pip install -e ."
221221
222222# TIER 1: Core Quality Gates (ZERO-TOLERANCE)
223- # Note: exclude external_deps and benchmark tests via addopts in pytest config
223+ # CI test excludes external_deps and benchmark tests
224224test = " pytest tests/ -v -x"
225225test-fast = " pytest tests/unit/ -v --maxfail=5"
226226test-cov = " pytest tests/ --cov=src/uckn --cov-report=html --cov-report=term --cov-report=xml --cov-report=json -m 'not external_deps and not benchmark'"
@@ -301,7 +301,14 @@ pythonpath = ["src"] # Enable import of uckn package without installation
301301python_files = [" test_*.py" , " *_test.py" ]
302302python_classes = [" Test*" ]
303303python_functions = [" test_*" ]
304- addopts = " -v --tb=short --strict-markers --timeout-method=thread -m 'not external_deps and not benchmark'"
304+ addopts = [
305+ " -v" ,
306+ " --tb=short" ,
307+ " --strict-markers" ,
308+ " --timeout-method=thread" ,
309+ " -m" ,
310+ " not external_deps and not benchmark" ,
311+ ]
305312# CI-specific configuration removed - using standard configuration with runtime environment detection
306313timeout = 120 # 2 minutes default timeout for all tests (pytest-timeout)
307314timeout_method = " thread"
You can’t perform that action at this time.
0 commit comments