From 418ec57388974f6372d5636954d637ed45f58492 Mon Sep 17 00:00:00 2001 From: Peter Heuer Date: Thu, 7 Nov 2024 09:11:21 -0500 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4401dfd..06b2cd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest - pip install -r requirements.txt + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: |