From 1f2f15fc95fa185e2b98d6d5812da371a1fc9331 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Wed, 20 Sep 2023 22:12:06 +0100 Subject: [PATCH] fix: requirements path Co-authored-by: Fabian Braun --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c69f598b..1bde1392 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -100,7 +100,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install ${{ matrix.requirements-file }} + pip install -r tests/requirements/${{ matrix.requirements-file }} python setup.py install - name: Run coverage