This repository has been archived on 2023-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-asset-manager/Makefile

12 lines
328 B
Makefile
Raw Normal View History

2014-11-21 20:48:06 +01:00
# note: this isn't needed for building BAM
# its just for some convenience targets.
# pep8 test
PY_FILES=$(shell find $(PWD) -type f -name '*.py')
pep8:
- flake8 $(PY_FILES) --ignore=E501,E302,E123,E126,E128,E129,E124,E122 > pep8.log
gvim --nofork -c "cfile pep8.log" -c "cope" -c "clast"
test:
python3 ./tests/test_cli.py