Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure test notebooks are packaged #281

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ target/

# IPython Notebook
.ipynb_checkpoints
*.ipynb
Untitled*.ipynb
.autoversion

# pyenv
Expand Down Expand Up @@ -165,7 +165,6 @@ nbcelltests/labextension/*.tgz
nbcelltests/labextension

# generated
*.ipynb
Untitled_test.html
Untitled_test.py
docs/api
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ clean: ## clean the repository
find . -name "*.pyc" | xargs rm -rf
find . -name ".ipynb_checkpoints" | xargs rm -rf
rm -rf .coverage coverage *.xml build dist *.egg-info lib node_modules .pytest_cache *.egg-info
rm -rf nbcelltests/extension
rm -rf nbcelltests/labextension
cd js && jlpm clean
git clean -fd

Expand Down