Skip to content

Commit b79e00b

Browse files
committed
enable xom.px again and fix missing comma
1 parent 0919efa commit b79e00b

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,10 @@ jobs:
5555
results/*.xml
5656
results/*.prof
5757
results/*.txt
58-
# - name: Test Report
59-
# uses: dorny/test-reporter@main
60-
# if: success() || failure() # run this step even if previous step failed
61-
# with:
62-
# name: xUnit Tests ${{ matrix.python-version }} # Name of the check run which will be created
63-
# path: results/pytest.xml,results/xunit.xml # Path to test results
64-
# reporter: java-junit # Format of test results
65-
- name: Report results
66-
if: success() || failure()
67-
run: |
68-
poetry shell
69-
pip install pytablewriter
70-
python utilities/gha_reporter.py utilities/output.xml $GITHUB_STEP_SUMMARY
58+
- name: Test Report
59+
uses: dorny/test-reporter@main
60+
if: success() || failure() # run this step even if previous step failed
61+
with:
62+
name: xUnit Tests ${{ matrix.python-version }} # Name of the check run which will be created
63+
path: results/pytest.xml,results/xunit.xml # Path to test results
64+
reporter: java-junit # Format of test results

tasks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ def atests(context):
3636
"robot",
3737
"--loglevel=TRACE:DEBUG",
3838
"--listener RobotStackTracer",
39-
"--exclude appiumORnot_readyORnot_ci"
39+
"--exclude appiumORnot_readyORnot_ci",
4040
"-d results",
41+
"--prerebotmodifier utilities.xom.XUnitOut:results/xunit.xml",
4142
f"{ROOT}/tests/atest"
4243
]
4344
global atests_completed_process

0 commit comments

Comments
 (0)