1
0
mirror of https://github.com/ycd/manage-fastapi.git synced 2021-11-08 01:34:39 +03:00

💚 Fix tests on the CI

This commit is contained in:
Marcelo Trylesinski
2020-11-22 00:14:50 +01:00
parent b574c5ae3c
commit 9f2031b8c5

View File

@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
fail-fast: false
fail-fast: true
steps:
- uses: actions/checkout@v2
@@ -24,6 +24,6 @@ jobs:
- name: Install Dependencies
run: poetry install
- name: Test
run: pytest --cov=manage_fastapi tests/
run: poetry run pytest tests/ --cov=manage_fastapi --cov-report=term-missing:skip-covered --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v1