build: clear jupyter notebook outputs on clean task
- Clear jupyter notebook output on clean target - Clear jupyter notebook run counter on clean target - Fix: Deletion of lib/ if lib/ does not exist
This commit is contained in:
parent
53d8884101
commit
e5c6ff32f2
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
|
@ -82,8 +82,9 @@ clean:
|
||||||
rm -f src/*.pyc
|
rm -f src/*.pyc
|
||||||
rm -f src/*.mpy
|
rm -f src/*.mpy
|
||||||
rm -f $(JUPYTER_PYTHON_FILES)
|
rm -f $(JUPYTER_PYTHON_FILES)
|
||||||
rm -r lib/
|
rm -rf lib/
|
||||||
rm -f requirements.txt
|
rm -f requirements.txt
|
||||||
|
$(VENV) jupyter nbconvert --clear-output --inplace src/*.ipynb
|
||||||
|
|
||||||
env:
|
env:
|
||||||
poetry install
|
poetry install
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue