First Working version. I can add table

This commit is contained in:
2025-05-10 16:55:52 +02:00
parent b708ef2c46
commit 2daff83e67
157 changed files with 17282 additions and 12 deletions

24
Makefile Normal file
View File

@@ -0,0 +1,24 @@
.PHONY: test
test:
pytest
coverage:
coverage run --source=src -m pytest
coverage html
clean:
rm -rf build
rm -rf htmlcov
rm -rf .coverage
rm -rf tests/*.csv
rm -rf tests/*:Zone.Identifier
rm -rf tests/TestDBEngineRoot
rm -rf tests/settings_from_unit_testing.json
rm -rf Untitled*.ipynb
rm -rf .ipynb_checkpoints
rm -rf src/tools.db
find . -name '.sesskey' -exec rm -rf {} +
find . -name '.pytest_cache' -exec rm -rf {} +
find . -name '__pycache__' -exec rm -rf {} +
find . -name 'debug.txt' -exec rm -rf {}