From 8a60330f3a5f8fd69e5cc96db8bdba19c92e15ae Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Tue, 12 Nov 2024 11:52:29 +0100 Subject: [PATCH] Source venv --- .github/workflows/ci_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 158ab94..dbe302b 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -41,7 +41,7 @@ jobs: - name: Create virtual env run: python3 -m venv venv --upgrade-deps - name: Install pyaro - run: venv/bin/activate && pip install ./ + run: source venv/bin/activate && pip install ./ - name: Try importing pyaro - run: venv/bin/activate && python -c "import pyaro; print(pyaro.__version__)" + run: source venv/bin/activate && python -c "import pyaro; print(pyaro.__version__)"