We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a4de53 commit 9539ae7Copy full SHA for 9539ae7
.github/workflows/build.yml
@@ -47,4 +47,19 @@ jobs:
47
docker-compose -f ./docker/docker-compose.yml build
48
docker-compose -f ./docker/docker-compose.yml run --rm e2e
49
working-directory: ui-tests
50
+
51
+ - name: Upload UI Test artifacts
52
+ if: always()
53
+ uses: actions/upload-artifact@v2
54
+ with:
55
+ name: ui-test-output
56
+ path: |
57
+ ui-tests/test-results
58
59
+ - name: Stop containers
60
61
+ run: |
62
+ # Print jupyterlab logs before removing the containers using the container name set in docker-compose file
63
+ docker logs jupyterlab
64
+ docker-compose -f ./docker/docker-compose.yml down
65
0 commit comments