Skip to content

Commit 853c748

Browse files
committed
Make scripts also consider dev notebooks
1 parent 3ae161e commit 853c748

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/checkstyle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ isort --check .
99
flake8
1010
mypy .
1111

12-
NOTEBOOKS="./**/*.ipynb"
12+
NOTEBOOKS="./examples/*.ipynb ./examples/dev/*.ipynb"
1313
for f in $NOTEBOOKS
1414
do
1515
NB=$(cat $f)

scripts/makestyle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ jupyter nbconvert \
1414
--ClearMetadataPreprocessor.enabled=True \
1515
--ClearMetadataPreprocessor.preserve_cell_metadata_mask='tags' \
1616
--log-level CRITICAL \
17-
./**/*.ipynb
17+
./examples/*.ipynb \
18+
./examples/dev/*.ipynb

0 commit comments

Comments
 (0)