From e108b89453ff67d43bec9cd490e9dd8a6cf99b5b Mon Sep 17 00:00:00 2001 From: Robert Baldyga Date: Sun, 28 Dec 2025 19:19:18 +0100 Subject: [PATCH] github-actions: Install pytest dependencies Signed-off-by: Robert Baldyga --- .github/workflows/tests-master.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests-master.yml b/.github/workflows/tests-master.yml index 8ebf3bec..4cd56a67 100644 --- a/.github/workflows/tests-master.yml +++ b/.github/workflows/tests-master.yml @@ -14,7 +14,11 @@ jobs: - uses: actions/checkout@v5 - name: 'Set up Python' uses: actions/setup-python@v5 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pytest - name: 'Build OCF library' run: cd tests/functional; make -j - name: 'Execute tests' - run: cd tests/functional; pytest + run: cd tests/functional; python3 -m pytest