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 d0ef082 commit 5798f45Copy full SHA for 5798f45
tests/venv/start/postBuild/postBuild
@@ -2,3 +2,5 @@
2
3
# this value should not be visible in `verify`
4
export TEST_START_VAR="var is set by postBuild"
5
+
6
+echo 'Done!' > $HOME/postbuild.txt
tests/venv/start/postBuild/verify
@@ -1,7 +1,6 @@
1
#!/bin/bash
set -euo pipefail
-jupyter nbextension list | grep 'jupyter-leaflet' | grep enabled
-
+grep 'Done!' $HOME/postbuild.txt
# set value of TEST_START_VAR to empty string when it is not defined
if [ "${TEST_START_VAR:-}" != "var is set" ]
7
then
0 commit comments