bits/Makefile

11 lines
150 B
Makefile
Raw Normal View History

2020-10-06 18:32:42 -05:00
init:
pip install -r requirements.txt
test:
2020-10-13 01:32:50 -05:00
python -m unittest -v tests/test_bit.py
2020-10-06 18:32:42 -05:00
python -m unittest -v tests/test_bits.py
.PHONY: init test