From e3b0745b22933391896acdef97ea6b532fda6fbb Mon Sep 17 00:00:00 2001 From: Abhijit Paul Date: Thu, 19 Oct 2023 11:57:34 +0530 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8e7046..fb9dbe0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + pip install flake8 + if [ -f requirements.txt ]; then pip install -r requirements.txt; - name: Test with Pytest run: | pip install pytest pytest-cov