aboutsummaryrefslogtreecommitdiff
path: root/test/python/install_jupyterlab.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/install_jupyterlab.sh')
-rw-r--r--test/python/install_jupyterlab.sh15
1 files changed, 11 insertions, 4 deletions
diff --git a/test/python/install_jupyterlab.sh b/test/python/install_jupyterlab.sh
index 98b982d..d48bb46 100644
--- a/test/python/install_jupyterlab.sh
+++ b/test/python/install_jupyterlab.sh
@@ -5,12 +5,19 @@ set -e
# Optional: Import test library
source dev-container-features-test-lib
+# Always run these checks as the non-root user
+user="$(whoami)"
+check "user" grep vscode <<< "$user"
+
+# Check for an installation of JupyterLab
check "version" jupyter lab --version
-check "config" grep ".*.allow_origin = '*'" /home/vscode/.jupyter/jupyter_server_config.py
-check "user" whoami | grep vscode
-check "zsh" zsh --version
-check "wget" wget -V
+# Check location of JupyterLab installation
+packages="$(python3 -m pip list)"
+check "location" grep jupyter <<< "$packages"
+
+# Check for correct JupyterLab configuration
+check "config" grep ".*.allow_origin = '*'" /home/vscode/.jupyter/jupyter_server_config.py
# Report result
reportResults