|
# Makefile
|
|
|
|
# Command to run the tests
|
|
TEST_CMD = python -m unittest discover -s tests -p "*_test.py"
|
|
|
|
# Target to run the tests
|
|
test:
|
|
@echo "Running tests..."
|
|
@$(TEST_CMD)
|
|
|
|
bootstrap:
|
|
python -m pip install -r requirements.txt
|
|
|
|
# Default target
|
|
default: test
|