From 2f09cd3e69676bf0f878d58e13d12cd7549ecb30 Mon Sep 17 00:00:00 2001 From: Jason Nucciarone <40342202+NucciTheBoss@users.noreply.github.com> Date: Fri, 28 Jun 2024 16:49:42 -0400 Subject: [PATCH] refactor: remove calls to sudo --- tests/integration/test_hpc_libs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_hpc_libs.yaml b/tests/integration/test_hpc_libs.yaml index 7c30274..b9b22c0 100644 --- a/tests/integration/test_hpc_libs.yaml +++ b/tests/integration/test_hpc_libs.yaml @@ -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 \