diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index c339ff8..1fe7b40 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -18,19 +18,17 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest pytest-cov coverage - - name: Run pytest with coverage - run: | - coverage erase - pytest --doctest-modules --cov-report term-missing --cov-report xml --cov-branch --cov-append --cov=src - name: Install Code Climate test-reporter run: | curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter - name: Before build + run: ./cc-test-reporter before-build + - name: Run pytest with coverage run: | - ./cc-test-reporter before-build + coverage erase + pytest --doctest-modules --cov-report term-missing --cov-report xml --cov-branch --cov-append --cov=src - name: After build - run: | - ./cc-test-reporter after-build --exit-code $? + run: ./cc-test-reporter after-build --exit-code $? env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}