From 0bcc02e9086e954fec2c45cab678014d0380645a Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Wed, 16 Aug 2023 11:36:52 +0200 Subject: [PATCH] Skip writing pyc files [ci] (#98423) --- .github/workflows/ci.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6d41c4e1e7f..5cb51a30dda 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -735,6 +735,8 @@ jobs: if: needs.info.outputs.test_full_suite == 'true' timeout-minutes: 60 id: pytest-full + env: + PYTHONDONTWRITEBYTECODE: 1 run: | . venv/bin/activate python --version @@ -759,6 +761,8 @@ jobs: timeout-minutes: 10 id: pytest-partial shell: bash + env: + PYTHONDONTWRITEBYTECODE: 1 run: | . venv/bin/activate python --version @@ -877,6 +881,8 @@ jobs: timeout-minutes: 20 id: pytest-partial shell: bash + env: + PYTHONDONTWRITEBYTECODE: 1 run: | . venv/bin/activate python --version @@ -994,6 +1000,8 @@ jobs: timeout-minutes: 20 id: pytest-partial shell: bash + env: + PYTHONDONTWRITEBYTECODE: 1 run: | . venv/bin/activate python --version