Açıklama Yok

Jeremy Tuloup ced63227e3 Add test for continue 5 yıl önce
schema 30829030c5 More scaffolding 5 yıl önce
src 1541599ec2 Add tests for stackTrace, scopes, variables 5 yıl önce
style f46829d377 add icon search 5 yıl önce
tests ced63227e3 Add test for continue 5 yıl önce
.gitignore 7723f736f8 Add xeus-python debug log files to gitignore 5 yıl önce
.prettierrc 65b4154a8c Add .prettierrc 5 yıl önce
LICENSE 64db2dfe4b Update LICENSE 5 yıl önce
README.md e9888101d3 Require xeus-python 0.5 5 yıl önce
azure-pipelines.yml e9888101d3 Require xeus-python 0.5 5 yıl önce
package.json 17a3f4dbd9 Merge pull request #15 from jtpio/ci-azure-pipelines 5 yıl önce
tdoptions.json 9e67f61b69 Add a shell JupyterLab extension. 5 yıl önce
tsconfig.json 25bfc84fb0 Add scaffolding for tests 5 yıl önce
tslint.json 9e67f61b69 Add a shell JupyterLab extension. 5 yıl önce

README.md

@jupyterlab/debugger

A JupyterLab debugger UI extension

This extension is under active development and is not yet available.

Prerequisites

  • JupyterLab 1.1+
  • xeus-python 0.5+

Development

# Create a new conda environment
conda create -n jupyterlab-debugger -c conda-forge jupyterlab nodejs xeus-python=0.5 ptvsd

# Activate the conda environment
conda activate jupyterlab-debugger

# Install dependencies
jlpm

# Build Typescript source
jlpm build

# Link your development version of the extension with JupyterLab
jupyter labextension link .

# Rebuild Typescript source after making changes
jlpm build

# Rebuild JupyterLab after making any changes
jupyter lab build

# Start JupyterLab with the kernel logs enabled and watch move enabled
XEUS_LOG=1 jupyter lab --no-browser --watch

Tests

Make sure xeus-python is installed and jupyter --paths points to where the kernel is installed.

To run the tests:

# [Optional] to enable the logs for xeus-python
export XEUS_LOG=1

jlpm run test