mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-13 16:00:37 -05:00
This re-enables CI tests on every PR 🎉.
This uses make test-integration, which runs tests sequentially.
In theory, we also have test-integration-parallel but it seems to be very flaky: many tests randomly timeout. I didn't spend too much time investigating this, it's probably worth its own investigation in a separate PR, but for now it's important to re-enable CI tests, even if they are a bit slower.
17 lines
400 B
YAML
17 lines
400 B
YAML
name: Test Report
|
|
on:
|
|
workflow_run:
|
|
workflows: ['\[CI\] Test']
|
|
types:
|
|
- completed
|
|
jobs:
|
|
report:
|
|
runs-on: ubuntu-latest-8core
|
|
steps:
|
|
- uses: dorny/test-reporter@v1.6.0
|
|
with:
|
|
artifact: test_results
|
|
name: Test reports
|
|
path: "*.xml"
|
|
reporter: java-junit
|