12 lines
204 B
Makefile
12 lines
204 B
Makefile
init:
|
|
pip3 install --user -r requirements.txt
|
|
|
|
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
|
|
|
|
.PHONY: init test
|
|
|
|
|