Skip to content

Commit c8b46ba

Browse files
Merge pull request #906 from robertbaldyga/actions-pytest-dependencies
github-actions: Install pytest dependencies
2 parents 9f38166 + e108b89 commit c8b46ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests-master.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ jobs:
1414
- uses: actions/checkout@v5
1515
- name: 'Set up Python'
1616
uses: actions/setup-python@v5
17+
- name: Install dependencies
18+
run: |
19+
python -m pip install --upgrade pip
20+
pip install pytest
1721
- name: 'Build OCF library'
1822
run: cd tests/functional; make -j
1923
- name: 'Execute tests'
20-
run: cd tests/functional; pytest
24+
run: cd tests/functional; python3 -m pytest

0 commit comments

Comments
 (0)