From 661ea3331fa8f5d3b95af30e10e360bfe9c76b65 Mon Sep 17 00:00:00 2001 From: Sverre Nystad Date: Tue, 12 Dec 2023 22:49:10 +0100 Subject: [PATCH] Feat: add pytest pip install to pipeline --- .github/workflows/python-package.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 85b4d3c..47cdde7 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -27,6 +27,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + python -m pip install pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: |