summaryrefslogtreecommitdiff
path: root/.github/workflows/integration.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/integration.yaml')
-rw-r--r--.github/workflows/integration.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml
index 58bde68..c1110b1 100644
--- a/.github/workflows/integration.yaml
+++ b/.github/workflows/integration.yaml
@@ -66,6 +66,21 @@ jobs:
pip install -U setuptools wheel
pip install -r dev_requirements.txt
tox -e ${{matrix.test-type}}-${{matrix.connection-type}}
+ - uses: actions/upload-artifact@v2
+ if: success() || failure()
+ with:
+ name: pytest-results-${{matrix.test-type}}
+ path: '${{matrix.test-type}}*results.xml'
+ - name: View Test Results
+ uses: dorny/test-reporter@v1
+ if: success() || failure()
+ with:
+ name: Test Results ${{matrix.python-version}} ${{matrix.test-type}}-${{matrix.connection-type}}
+ path: '${{matrix.test-type}}*results.xml'
+ reporter: java-junit
+ list-suites: failed
+ list-tests: failed
+ max-annotations: 10
- name: Upload codecov coverage
uses: codecov/codecov-action@v2
with: