Skip to content

Commit

Permalink
update the tb argument
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-flinn committed Nov 22, 2023
1 parent b35650e commit 00579cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_jobs_py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ jobs:
working-directory: .github/jobs-py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pipenv run pytest tests/unit --junit-xml=reports/unit.xml --tb
run: pipenv run pytest tests/unit --junit-xml=reports/unit.xml --tb=line

- name: Run E2E Tests
working-directory: .github/jobs-py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pipenv run pytest tests/e2e --junit-xml=reports/e2e.xml --tb
run: pipenv run pytest tests/e2e --junit-xml=reports/e2e.xml --tb=line

- name: Report test results
uses: dorny/test-reporter@afe6793191b75b608954023a46831a3fe10048d4 # v1.7.0
if: always()
with:
name: Test Results
path: ".github/jobs-py/reports/*.xml"
reporter: dotnet-trx
reporter: java-junit
fail-on-error: true

0 comments on commit 00579cc

Please sign in to comment.