From c15966bbe1f34092c2abe1b9e1b48a01ca332b19 Mon Sep 17 00:00:00 2001 From: Javier Evans Date: Wed, 15 Nov 2023 10:39:22 -0800 Subject: [PATCH] hack to fix python venv cleanup --- .github/workflows/pulumi-aws-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pulumi-aws-tests.yml b/.github/workflows/pulumi-aws-tests.yml index 7ea2c8a..0f9cd3c 100644 --- a/.github/workflows/pulumi-aws-tests.yml +++ b/.github/workflows/pulumi-aws-tests.yml @@ -23,6 +23,7 @@ jobs: working-directory: bin run: ./test_runner.sh "/home/runner/work/kic-reference-architectures/kic-reference-architectures" + # Hack to make the postjob work by the python gh action not fail since we have the venv elsewhere - run: mkdir -p /home/runner/.local/share/virtualenvs macos-tests: @@ -42,3 +43,6 @@ jobs: - name: Test working-directory: bin run: ./test_runner.sh "/Users/runner/work/kic-reference-architectures/kic-reference-architectures" + + # Hack to make the postjob work by the python gh action not fail since we have the venv elsewhere + - run: mkdir -p /Users/runner/.local/share/virtualenvs