Checkpoint initial implementation

This commit is contained in:
Andrew Miner
2025-10-06 17:41:18 -06:00
parent 773e0a3d85
commit a8b6e6b15e
106 changed files with 3012 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
source .venv/bin/activate
Executable
+5
View File
@@ -0,0 +1,5 @@
[[ -d .venv ]] && rm -rf .venv
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
Executable
+2
View File
@@ -0,0 +1,2 @@
source bin/activate.sh
pytest tungston -vv $*
+2
View File
@@ -0,0 +1,2 @@
source bin/activate.sh
watch -c "pytest -q --color=yes --tb=short tungston"