Skip to content

Commit 074dedf

Browse files
committed
Fixes
1 parent 506b224 commit 074dedf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

{{cookiecutter.github_project_name}}/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ $RECYCLE.BIN/
144144

145145
**/node_modules/
146146
{{ cookiecutter.python_package_name }}/nbextension/static/index.*
147+
{{ cookiecutter.python_package_name }}/labextension/*.tgz
147148

148149
# Coverage data
149150
# -------------

{{cookiecutter.github_project_name}}/.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ matrix:
1414
cache:
1515
pip: true
1616
directories:
17-
- {{ cookiecutter.python_package_name }}/jlextension/node_modules # NPM packages
18-
- ts/node_modules # NPM packages
17+
- node_modules # NPM packages
1918
- $HOME/.npm
2019
before_install:
2120
- pip install -U pip setuptools
@@ -50,7 +49,7 @@ script:
5049
pushd $(mktemp -d)
5150
py.test -l --cov-report xml:$TRAVIS_BUILD_DIR/coverage.xml --cov={{ cookiecutter.python_package_name }} --pyargs {{ cookiecutter.python_package_name }} || EXIT_STATUS=$?
5251
popd
53-
exit $EXIT_STATUS
52+
(exit $EXIT_STATUS)
5453
elif [[ $GROUP == js ]]; then
5554
npm test
5655
fi

{{cookiecutter.github_project_name}}/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
('share/jupyter/nbextensions/{{ cookiecutter.npm_package_name }}',
4848
nb_path, '*.js*'),
4949
('share/jupyter/lab/extensions', lab_path, '*.tgz'),
50-
('etc/jupyter/nbconfig/notebook.d/' , HERE, '{{ cookiecutter.npm_package_name }}.json')
50+
('etc/jupyter/nbconfig/notebook.d' , HERE, '{{ cookiecutter.npm_package_name }}.json')
5151
]
5252

5353

0 commit comments

Comments
 (0)