From def2a7382c645cca476afd33c5b95a5e74d464f2 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Tue, 12 Nov 2024 16:42:03 -0800 Subject: [PATCH] ci: don't create xvfb for unit_test (#34007) no more --- .github/workflows/selfdrive_tests.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/selfdrive_tests.yaml b/.github/workflows/selfdrive_tests.yaml index 0bbdb97472..ab1ba33c8f 100644 --- a/.github/workflows/selfdrive_tests.yaml +++ b/.github/workflows/selfdrive_tests.yaml @@ -176,8 +176,7 @@ jobs: - name: Run unit tests timeout-minutes: ${{ contains(runner.name, 'nsc') && 1 || 20 }} run: | - ${{ env.RUN }} "source selfdrive/test/setup_xvfb.sh && \ - MAX_EXAMPLES=1 $PYTEST --timeout 60 -m 'not slow' && \ + ${{ env.RUN }} "MAX_EXAMPLES=1 $PYTEST --timeout 60 -m 'not slow' && \ ./selfdrive/ui/tests/create_test_translations.sh && \ QT_QPA_PLATFORM=offscreen ./selfdrive/ui/tests/test_translations" - name: "Upload coverage to Codecov"