New upstream version 0.0.15

This commit is contained in:
Tianyu Chen 2022-11-22 11:19:55 +08:00
parent 3e1f11dd79
commit c286789e37
55 changed files with 3578 additions and 1371 deletions

20
Makefile Normal file
View file

@ -0,0 +1,20 @@
check:: style
style:
flake8
check:: testsuite
testsuite:
python3 -m unittest tests.test_suite
check:: typing
typing:
mypy ognibuild tests
coverage:
python3 -m coverage run -m unittest tests.test_suite
coverage-html:
python3 -m coverage html