Skip to content

Commit

Permalink
Merge pull request #73 from unitaryai/remove-pip-use-feature-flag
Browse files Browse the repository at this point in the history
Remove --use-feature=2020-resolver pip flag
  • Loading branch information
laurahanu authored Nov 15, 2022
2 parents 1f1e8a9 + 28df8a4 commit 452932a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ jobs:
- name: Install dependencies
run: |
pip install --requirement requirements.txt --upgrade --quiet --find-links https://download.pytorch.org/whl/cpu/torch_stable.html --use-feature=2020-resolver
pip install --requirement tests/requirements.txt --quiet --use-feature=2020-resolver
pip install --requirement requirements.txt --upgrade --quiet --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
pip install --requirement tests/requirements.txt --quiet
python --version
pip --version
pip list
shell: bash

- name: Tests
run: |
coverage run --source src,detoxify -m py.test src tests -v --junitxml=junit/test-results-${{ runner.os }}-${{ matrix.python-version }}.xml
coverage run --source src,detoxify -m pytest src tests -v --junitxml=junit/test-results-${{ runner.os }}-${{ matrix.python-version }}.xml
- name: Statistics
if: success()
Expand Down

0 comments on commit 452932a

Please sign in to comment.