Skip to content
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: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,6 @@ docs/build/*

# timer.dat
timer.dat

# .vscode
.vscode
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ install-sella:
install-xtb:
bash devtools/install_xtb.sh

lite:
bash devtools/lite.sh

clean:
find -type d -name __pycache__ -exec rm -rf {} +
rm -rf testing
Expand Down
11 changes: 11 additions & 0 deletions devtools/lite.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
# delete all the Test and unnecessary files
pushd .

rm -rf functional
rm -rf ipython
rm -rf arc/testing

find "$PWD" -path '*Test.py' -type f -delete

popd || exit