Skip to content

Commit

Permalink
refactor: remove calls to sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
NucciTheBoss committed Jun 28, 2024
1 parent beb8e9a commit 9414951
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_hpc_libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ acts:
- name: "Install dependencies in a virtual environment"
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt update
sudo apt install -y python3-venv python3-yaml
apt update
apt install -y python3-venv python3-yaml
python3 -m venv venv --system-site-packages
venv/bin/python3 -m pip install -r dev-requirements.txt
- name: "Run integration tests with pytest"
run: |
sudo venv/bin/python3 -m pytest -v \
venv/bin/python3 -m pytest -v \
-s \
--tb native \
--log-cli-level=INFO \
Expand Down

0 comments on commit 9414951

Please sign in to comment.