Spaces:
Sleeping
Sleeping
File size: 524 Bytes
b7c2c9d 86deab0 b7c2c9d 86deab0 b7c2c9d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # QCrypt RNG Makefile
.PHONY: help install test run clean
help:
@echo "Available commands:"
@echo " make install - Install dependencies"
@echo " make test - Run test script"
@echo " make run - Run test script"
@echo " make clean - Clean cache files"
install:
pip install -r requirements.txt
test:
pytest
run:
python scripts/start.py
clean:
find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true
find . -type f -name "*.pyc" -delete
rm -rf .pytest_cache
rm -rf logs/*.log
|