10 lines
167 B
Makefile
10 lines
167 B
Makefile
|
.PHONY: clean
|
||
|
clean:
|
||
|
find . -name '*.pyc' -delete
|
||
|
find . -name '__pycache__' -delete
|
||
|
|
||
|
.PHONY: test
|
||
|
test:
|
||
|
python3 tests/test_xml_base.py
|
||
|
python3 tests/test_odoo.py
|