diff options
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 723fa69..f64c44b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,10 @@ jobs: test: runs-on: ubuntu-18.04 + env: + PIP_DISABLE_PIP_VERSION_CHECK: 1 + PIP_NO_PYTHON_VERSION_WARNING: 1 + strategy: fail-fast: false matrix: @@ -29,7 +33,9 @@ jobs: python-version: '${{ matrix.python-version }}' - name: Install dependencies - run: python -m pip install -r requirements.txt + run: | + pip install -r constraints.txt + pip install -r requirements.txt - name: Run the tests run: ./.ci/bin/main.sh |