12 lines
193 B
Makefile
12 lines
193 B
Makefile
init:
|
|
pip install -r requirements.txt
|
|
|
|
test:
|
|
python -m unittest -v tests/test_bit.py
|
|
python -m unittest -v tests/test_bits.py
|
|
python -m unittest -v tests/test_bytes.py
|
|
|
|
.PHONY: init test
|
|
|
|
|