From 905d3d75a3eb4ced72aa78868b7b2b181dcacf0c Mon Sep 17 00:00:00 2001 From: Petr Andriushchenko Date: Tue, 7 Mar 2023 13:44:18 +0100 Subject: [PATCH] fixed ci --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97f1ab3..c4ae57c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,14 +32,14 @@ jobs: - name: Run pytest run: | cd misinformation - python -m pytest -vv test_cropposts.py --cov=. --cov-report=xml - python -m pytest -vv test_display.py --cov=. --cov-report=xml - python -m pytest -vv test_faces.py --cov=. --cov-report=xml - python -m pytest -vv test_multimodal_search.py --cov=. --cov-report=xml - python -m pytest -vv test_objects.py --cov=. --cov-report=xml - python -m pytest -vv test_summary.py --cov=. --cov-report=xml - python -m pytest -vv test_text.py -m "not gcv" --cov=. --cov-report=xml - python -m pytest -vv test_utils.py --cov=. --cov-report=xml + python -m pytest -vv test/test_cropposts.py --cov=. --cov-report=xml + python -m pytest -vv test/test_display.py --cov=. --cov-report=xml + python -m pytest -vv test/test_faces.py --cov=. --cov-report=xml + python -m pytest -vv test/test_multimodal_search.py --cov=. --cov-report=xml + python -m pytest -vv test/test_objects.py --cov=. --cov-report=xml + python -m pytest -vv test/test_summary.py --cov=. --cov-report=xml + python -m pytest -vv test/test_text.py -m "not gcv" --cov=. --cov-report=xml + python -m pytest -vv test/test_utils.py --cov=. --cov-report=xml - name: Upload coverage if: matrix.os == 'ubuntu-22.04' && matrix.python-version == '3.9' uses: codecov/codecov-action@v3