From 694dc19139972b8e685927976fadd8cf39192503 Mon Sep 17 00:00:00 2001 From: Darren Vengroff Date: Sat, 5 Oct 2024 09:03:49 -0400 Subject: [PATCH] Don't condition installation of requirements. --- .github/workflows/run-tests.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 318f8d0..c1671b9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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