[ci] Exclude device-builder slow e2e tests from downstream CI (#16801)

This commit is contained in:
J. Nick Koston
2026-06-04 10:39:54 -05:00
committed by GitHub
parent 1734dc85d2
commit c765e22622

View File

@@ -189,9 +189,12 @@ jobs:
- name: Run device-builder pytest - name: Run device-builder pytest
# ``-n auto`` runs under pytest-xdist (matches device-builder's # ``-n auto`` runs under pytest-xdist (matches device-builder's
# own CI). No ``--cov`` here -- this is purely a downstream # own CI). No ``--cov`` here -- this is purely a downstream
# smoke check against this PR's esphome code. # smoke check against this PR's esphome code. ``tests/e2e/slow``
# is excluded: those are real multi-minute toolchain compiles
# (LibreTiny SDK clone, native ESP-IDF install) that device-builder
# runs in its own dedicated jobs, not this smoke check.
working-directory: device-builder working-directory: device-builder
run: pytest -q -n auto --maxfail=5 --durations=30 --no-cov --ignore=tests/benchmarks run: pytest -q -n auto --maxfail=5 --durations=30 --no-cov --ignore=tests/benchmarks --ignore=tests/e2e/slow
pytest: pytest:
name: Run pytest name: Run pytest