From 116cfbc67c3f9e8dc04b685c5f5a89a97089472d Mon Sep 17 00:00:00 2001 From: Sandeep Mistry Date: Tue, 14 Nov 2023 13:18:54 -0500 Subject: [PATCH] Use Python virtual environment --- .github/workflows/avh.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/avh.yml b/.github/workflows/avh.yml index 9ffb2a8595edfa..4a8ccc81e9a7d4 100644 --- a/.github/workflows/avh.yml +++ b/.github/workflows/avh.yml @@ -88,9 +88,12 @@ jobs: - name: Install Python dependencies run: | + python3 -m venv venv + source venv/bin/activate pip3 install -r scripts/tests/avh/requirements.txt - name: Run end to end test run: | + source venv/bin/activate cd scripts/tests/avh python3 -u -m unittest test_lighting_app.py