We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7298e68 commit 89f1cf8Copy full SHA for 89f1cf8
.github/workflows/galata.yml
@@ -48,15 +48,11 @@ jobs:
48
run: |
49
bash ./scripts/ci_install.sh
50
51
- - name: Build JupyterLab dev-mode docker
52
- run: |
53
- /bin/sh ./scripts/build_docker.sh
54
-
55
- name: Launch JupyterLab
56
57
cd galata
58
# Mount a volume to overwrite the server configuration
59
- docker run --rm -p 8888:8888 -v ${PWD}:/etc/jupyter -e SKIP_INTEGRITY_CHECK=true -d --name galata-jlab jupyterlab-dev
+ jlpm start 2>&1 > /tmp/jupyterlab_server.log &
60
61
- name: Install browser
62
@@ -92,9 +88,7 @@ jobs:
92
88
path: |
93
89
galata/playwright-report
94
90
95
- - name: Stop JupyterLab
91
+ - name: Print JupyterLab logs
96
if: always()
97
98
- docker logs galata-jlab || true
99
- docker stop galata-jlab || true
100
- docker rm -f galata-jlab || true
+ cat /tmp/jupyterlab_server.log
0 commit comments