Skip to content

Commit

Permalink
Don't condition installation of requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
vengroff committed Oct 5, 2024
1 parent 90cda9e commit 694dc19
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,11 @@ jobs:
- name: Install dependencies.
run: |
if [ -f requirements-test.txt ]; then \
pip install \
--index-url https://us-central1-python.pkg.dev/cube-machine-learning/rewiring-america-python-repo/simple \
--extra-index-url https://pypi.org/simple/ \
--keyring-provider import \
-r ./requirements-test-14.3.txt; \
fi
pip install \
--index-url https://us-central1-python.pkg.dev/cube-machine-learning/rewiring-america-python-repo/simple \
--extra-index-url https://pypi.org/simple/ \
--keyring-provider import \
-r ./requirements-test-14.3.txt; \
- name: Test with pytest
run: |
pytest

0 comments on commit 694dc19

Please sign in to comment.