This commit is contained in:
2026-06-24 16:33:34 +02:00
commit 1611444153
26 changed files with 1400 additions and 0 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if pip list | grep -q 'coverage'; then
python -m coverage run --omit=*/dist-packages/*,functions.py,generate.py,encrypt.py,decrypt.py -m unittest
python -m coverage report
else
pip install coverage
python -m coverage run --omit=*/dist-packages/*,functions.py,generate.py,encrypt.py,decrypt.py -m unittest
python -m coverage report
fi