Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kohulan authored Nov 12, 2024
1 parent eeb55e3 commit d94d8bf
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ jobs:
run: |
python3 -m pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
run: |
curl -Os https://cli.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov upload-process --fail-on-error -t ${{ secrets.CODECOV_TOKEN }} -f coverage-service.xml -F service -n "service-${{ github.run_id }}"
uses: codecov/codecov-action@v4
with:
directory: ./coverage/reports/
fail_ci_if_error: true
files: /home/runner/work/cheminformatics-microservice/cheminformatics-microservice/coverage.xml
flags: unittests
name: codecov-umbrella
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit d94d8bf

Please sign in to comment.