We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97d421 commit ca51d67Copy full SHA for ca51d67
1 file changed
.github/workflows/python-integration.yaml
@@ -77,10 +77,17 @@ jobs:
77
with:
78
# artifact: unit-test-results-${{ matrix.python-version }}
79
name: Integration Test Report [python_${{ matrix.python-version }}-postgres_${{ matrix.postgres-version }}-rabbitmq_${{ matrix.rabbitmq-version }}]
80
- path: 'test/volumes/artifacts/*.xml'
+ path: 'integration.JUnit.xml'
81
reporter: java-junit
82
83
84
+ - name: Upload Junit Test Report
85
+ uses: actions/upload-artifact@v4
86
+ if: success() || failure()
87
+ with:
88
+ name: integration-test-report-junit-python_${{ matrix.python-version }}-postgres_${{ matrix.postgres-version }}-rabbitmq_${{ matrix.rabbitmq-version }}
89
+ path: integration.JUnit.xml
90
+
91
- name: Upload Artifacts - Logs
92
uses: actions/upload-artifact@v4
93
if: success() || failure()
0 commit comments