Skip to content

Commit

Permalink
Add venv to Python client test
Browse files Browse the repository at this point in the history
  • Loading branch information
linusseelinger committed May 17, 2024
1 parent 3b3a70a commit 82a3be7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/client-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ jobs:
-
name: Dependencies
run: |
apt update && DEBIAN_FRONTEND="noninteractive" apt install -y python3-pip && pip3 install umbridge pytest
apt update && DEBIAN_FRONTEND="noninteractive" apt install -y python3-pip
python -m venv venv
. .venv/bin/activate
pip3 install umbridge pytest
-
name: Build and run
run: |
. .venv/bin/activate
cd testing/clients && pytest -v test_python.py

0 comments on commit 82a3be7

Please sign in to comment.