File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ script:
10
10
- python setup.py sdist
11
11
- pip install --find-links=dist jupyterlab_git[test]
12
12
- pytest jupyterlab_git
13
- - jlpm install
14
- - jlpm run build
15
13
- jlpm run test
16
14
- jupyter lab build
17
15
- python -m jupyterlab.browser_check
Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ Requires node 4+ and npm 4+
58
58
# Clone the repo to your local environment
59
59
git clone https://github.com/jupyterlab/jupyterlab-git.git
60
60
cd jupyterlab-git
61
- # Install the server extension in development mode
62
- pip install -e .
63
- jupyter serverextension enable --py jupyterlab_git
61
+ # Install JupyterLab
62
+ pip install jupyterlab
64
63
# Install Javascript dependencies
65
64
jlpm install
66
- # Build Typescript source
67
- jlpm run build
65
+ # Install the server extension in development mode
66
+ pip install -e .[test]
67
+ jupyter serverextension enable --py jupyterlab_git
68
68
# Link your development version of the extension with JupyterLab
69
69
jupyter labextension link .
70
70
```
@@ -75,3 +75,10 @@ To rebuild the package after a change and the JupyterLab app:
75
75
jlpm run build
76
76
jupyter lab build
77
77
```
78
+
79
+ To execute the tests
80
+
81
+ ``` bash
82
+ pytest jupyterlab_git
83
+ jlpm run test
84
+ ```
Original file line number Diff line number Diff line change 74
74
"jest" : " ^24" ,
75
75
"jest-fetch-mock" : " ^1.6.6" ,
76
76
"lint-staged" : " 8.1.5" ,
77
+ "mkdirp" : " ^0.5.1" ,
77
78
"prettier" : " 1.16.4" ,
78
79
"puppeteer" : " ^1.10.0" ,
79
80
"rimraf" : " ^2.6.1" ,
You can’t perform that action at this time.
0 commit comments