e2e: save screenshot on failure, upload to github actions

This commit is contained in:
Jens Langhammer
2020-06-21 14:43:48 +02:00
parent 5c49cda884
commit 0838f518d4
2 changed files with 8 additions and 0 deletions

View File

@ -139,6 +139,10 @@ jobs:
yarn
- name: Run coverage
run: pipenv run coverage run ./manage.py test --failfast
- uses: actions/upload-artifact@v2
if: failure()
with:
path: out/
- name: Create XML Report
run: pipenv run coverage xml
- uses: codecov/codecov-action@v1