diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1eb7361..2f64399 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,9 @@ jobs: python-version: '${{ matrix.python-version }}' - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install -r constraints.txt + pip install -r requirements.txt - name: Run the tests run: ./.ci/plot.sh |