From 74432031e4bc1de41c42587060c4ba8733158ae7 Mon Sep 17 00:00:00 2001 From: Santiago Lamora Date: Wed, 9 Feb 2022 09:54:57 +0100 Subject: [PATCH] Revert "Add pytest-xdist to run test in parallel" This reverts commit 3a395bed8033180afa04d515e0b6f584ce3367a7. --- .github/workflows/flask.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flask.yml b/.github/workflows/flask.yml index cacc314c..d94c15d8 100644 --- a/.github/workflows/flask.yml +++ b/.github/workflows/flask.yml @@ -50,7 +50,7 @@ jobs: pip install virtualenv virtualenv env source env/bin/activate - pip install flake8 pytest pytest-xdist + pip install flake8 pytest coverage pip install -r requirements.txt - name: Prepare database @@ -68,4 +68,11 @@ jobs: - name: Run Tests run: | source env/bin/activate - pytest -m mvp --maxfail=5 tests/ -n auto + coverage run --source='ereuse_devicehub' env/bin/pytest -m mvp --maxfail=5 tests/ + coverage report --include='ereuse_devicehub/*' + coverage xml + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }}