Skip to content

Commit

Permalink
fix: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
koushik-kiran-kumar committed Jun 24, 2024
1 parent 73689b5 commit a8fec87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run Tests
run: py.test -v --cov=swimlane --cov-report=xml
run: python -m pytest --cov=swimlane --cov-report=xml:coverage.xml
- name: Run Codacy Coverage Reporter
uses: codacy/codacy-coverage-reporter-action@v1.3.0
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml
Expand Down

0 comments on commit a8fec87

Please sign in to comment.