Skip to content

Commit ca51d67

Browse files
committed
feat(tests): setup docker-compose for integration tests 5
1 parent c97d421 commit ca51d67

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/python-integration.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,17 @@ jobs:
7777
with:
7878
# artifact: unit-test-results-${{ matrix.python-version }}
7979
name: Integration Test Report [python_${{ matrix.python-version }}-postgres_${{ matrix.postgres-version }}-rabbitmq_${{ matrix.rabbitmq-version }}]
80-
path: 'test/volumes/artifacts/*.xml'
80+
path: 'integration.JUnit.xml'
8181
reporter: java-junit
8282

8383

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+
8491
- name: Upload Artifacts - Logs
8592
uses: actions/upload-artifact@v4
8693
if: success() || failure()

0 commit comments

Comments
 (0)