|
|
|
|
@ -37,13 +37,13 @@ jobs:
@@ -37,13 +37,13 @@ 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 |
|
|
|
|
@ -51,5 +51,5 @@ jobs:
@@ -51,5 +51,5 @@ jobs:
|
|
|
|
|
with: |
|
|
|
|
name: Test Results |
|
|
|
|
path: ".github/jobs-py/reports/*.xml" |
|
|
|
|
reporter: dotnet-trx |
|
|
|
|
reporter: java-junit |
|
|
|
|
fail-on-error: true |
|
|
|
|
|