diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-29 22:49:01 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-11-29 22:49:01 +0300 |
commit | 44f64ed4f0237238bab7e483634f52802829b01f (patch) | |
tree | e5249df268b1c313d96c658de4fea085141bfdfd /.github/workflows/test.yml | |
parent | add GitHub workflow (diff) | |
download | sorting-algorithms-44f64ed4f0237238bab7e483634f52802829b01f.tar.gz sorting-algorithms-44f64ed4f0237238bab7e483634f52802829b01f.zip |
copy the 3.4 workaround from vk-scripts
Diffstat (limited to '.github/workflows/test.yml')
-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 |