10 lines
163 B
Makefile
10 lines
163 B
Makefile
default: sim
|
|
|
|
sim:
|
|
@echo "Starting the simulation!"
|
|
uv run python simulation.py
|
|
|
|
test:
|
|
@echo "Try to run all the tests."
|
|
uv run python -m unittest discover -v
|