obelisk

Electrum server using libbitcoin as its backend
git clone https://git.parazyd.org/obelisk
Log | Files | Refs | README | LICENSE

Makefile (319B)


      1 all:
      2 	@echo "Available targets:"
      3 	@echo
      4 	@echo "make coverage - Run test units and report code coverage"
      5 	@echo "make test     - Run test units"
      6 	@echo "make format   - Format code"
      7 
      8 format:
      9 	yapf --style google -i -r .
     10 
     11 test:
     12 	python3 tests
     13 
     14 coverage:
     15 	coverage run tests
     16 	coverage report
     17 	coverage html
     18 	coverage xml