changed CI one pytest by individual tests

Этот коммит содержится в:
Petr Andriushchenko 2023-03-10 11:32:12 +01:00
родитель 3dd120018c
Коммит 65d916921b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C4A5DCF634115B6

9
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -32,7 +32,14 @@ jobs:
- name: Run pytest
run: |
cd misinformation
python -m pytest -vv -m "not gcv" --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