There was an error while loading. Please reload this page.
1 parent 165a319 commit d6aeec2Copy full SHA for d6aeec2
1 file changed
.github/workflows/pytest.yml
@@ -16,12 +16,13 @@ jobs:
16
fetch-depth: 0
17
- name: Install Python
18
run: |
19
- dnf install -y python3 python3-pip
+ dnf install -y python3
20
- name: Install dependencies
21
22
- python3 -m pip install --upgrade pip
23
- pip3 install -r requirements.txt
24
- pip3 install -r test_requirements.txt
+ python3 -m venv /tmp/venv
+ /tmp/venv/bin/pip install --upgrade pip
+ /tmp/venv/bin/pip install -r requirements.txt
25
+ /tmp/venv/bin/pip install -r test_requirements.txt
26
- name: Running unit tests with pytest
27
- cd aquilon/ && pytest -vv
28
+ cd aquilon/ && /tmp/venv/bin/pytest -vv
0 commit comments