bits/Makefile

12 lines
204 B
Makefile
Raw Normal View History

2020-10-06 18:32:42 -05:00
init:
pip3 install --user -r requirements.txt
2020-10-06 18:32:42 -05:00
test:
python3 -m unittest -v tests/test_bit.py
python3 -m unittest -v tests/test_bits.py
python3 -m unittest -v tests/test_bytes.py
2020-10-06 18:32:42 -05:00
.PHONY: init test