From 65b386f69ae9ae7d3c6bceefc8d0ef7e905cd7f6 Mon Sep 17 00:00:00 2001 From: ye11ow Date: Tue, 14 Sep 2021 17:27:41 -0700 Subject: [PATCH] Fixed CI --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 4cac3ee..9bbff4f 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -20,7 +20,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi - name: Test with pytest run: | python -m pytest tests/unit --cov=. --cov-report html --cov-report term