Actions cleanup (#37307)

* rm those

* more opt
This commit is contained in:
Adeeb Shihadeh
2026-02-21 11:45:44 -08:00
committed by GitHub
parent f45f239774
commit f41d77b24f
2 changed files with 4 additions and 6 deletions

View File

@@ -19,8 +19,6 @@ concurrency:
env:
CI: 1
PYTHONPATH: ${{ github.workspace }}
PYTEST: pytest --continue-on-collection-errors --durations=0 -n logical
jobs:
build_release:
@@ -131,8 +129,8 @@ jobs:
run: |
source selfdrive/test/setup_xvfb.sh
# Pre-compile Python bytecode so each pytest worker doesn't need to
$PYTEST --collect-only -m 'not slow' -qq
MAX_EXAMPLES=1 $PYTEST -m 'not slow'
pytest --collect-only -m 'not slow' -qq
MAX_EXAMPLES=1 pytest -m 'not slow'
process_replay:
name: process replay
@@ -195,7 +193,7 @@ jobs:
timeout-minutes: 4
env:
ONNXCPU: 1
run: $PYTEST selfdrive/test/process_replay/test_regen.py
run: pytest selfdrive/test/process_replay/test_regen.py
simulator_driving:
name: simulator driving

View File

@@ -112,7 +112,7 @@ allow-direct-references = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ignore=openpilot/ --ignore=opendbc/ --ignore=panda/ --ignore=rednose_repo/ --ignore=tinygrad_repo/ --ignore=teleoprtc_repo/ --ignore=msgq/ -Werror --strict-config --strict-markers --durations=10 -n auto --dist=loadgroup"
addopts = "--ignore=openpilot/ --ignore=opendbc/ --ignore=panda/ --ignore=rednose_repo/ --ignore=tinygrad_repo/ --ignore=teleoprtc_repo/ --ignore=msgq/ -Werror --strict-config --strict-markers --durations=20 --maxprocesses=8 -n auto --dist=loadgroup"
cpp_files = "test_*"
cpp_harness = "selfdrive/test/cpp_harness.py"
python_files = "test_*.py"