diff options
author | Pierrick Hymbert <pierrick.hymbert@gmail.com> | 2024-04-26 12:27:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 12:27:25 +0200 |
commit | bbe3c6e76157a5d806fdc155451f0ca8936248ee (patch) | |
tree | fa86afed21dc0051ee3931320de6c96101a1a506 | |
parent | 7f5ff558eed0f732af8f25c2ab0645610bdec80c (diff) |
ci: server: fix python installation (#6925)
-rw-r--r-- | .github/workflows/server.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 67bbe6cb..a044d604 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -106,7 +106,7 @@ jobs: run: | cd examples/server/tests python3 -m venv venv - source venv/bin/activate + . venv/bin/activate pip install -r requirements.txt - name: Tests |