From 6ba06e9170c7879d395d4d1ccaa6c9fead3a6f89 Mon Sep 17 00:00:00 2001 From: Abhijit Paul Date: Thu, 19 Oct 2023 11:59:59 +0530 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fb9dbe0..2c0e1bf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,11 +22,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 + pip install pytest pytest-cov if [ -f requirements.txt ]; then pip install -r requirements.txt; - name: Test with Pytest run: | - pip install pytest pytest-cov python -m pytest --disable-warnings --doctest-modules --cov=./ --cov-report=xml --cov-report=html - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3