Skip to content

Commit

Permalink
Fix readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
wwakabobik committed Aug 30, 2024
1 parent 4105b4b commit acda84c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/master_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
run: echo "PYTHONPATH=$PYTHONPATH:$(pwd)/testrail_api_reporter:." >> $GITHUB_ENV
- name: Execute tests
id: tests
continue-on-error: true
env:
FREEIMAGEHOST_API_KEY: ${{ secrets.FREEIMAGEHOST_API_KEY }}
run: pytest tests -n=auto --cov=testrail_api_reporter --cov-report=term --cov-report=xml:coverage.xml --cov-report=html
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
Expand All @@ -44,3 +47,8 @@ jobs:
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
- name: Summary status of tests
run: |
if [[ "${{ steps.tests.outcome }}" == "failure" ]]; then
exit 1
fi

0 comments on commit acda84c

Please sign in to comment.