diff options
author | VG <vg@devys.org> | 2016-03-14 15:23:01 +0100 |
---|---|---|
committer | VG <vg@devys.org> | 2016-03-14 15:23:01 +0100 |
commit | 0eb4d62cf3e1b39540c65acd327925aa3c43947b (patch) | |
tree | 78efd6fb9a03c374208ef7d9df17d3d0576d45d1 /tests/Makefile | |
parent | c4d61b7bfa3e3723ff87df8c163c9d77feeff4f8 (diff) | |
download | wqueue-0eb4d62cf3e1b39540c65acd327925aa3c43947b.tar.gz wqueue-0eb4d62cf3e1b39540c65acd327925aa3c43947b.tar.bz2 wqueue-0eb4d62cf3e1b39540c65acd327925aa3c43947b.zip |
wip
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..6929f5e --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,10 @@ +# static python static checker +# python3-flake8 (pyflakes + python3-pep8) +# pylint3 + +#@python3.5 -m flake8 wqueue2.py => does not support async keyword for now +q= + +test: + $(Q)python3.5 -m pep8 --first . + $(Q)PYTHONASYNCIODEBUG=1 PYTHONUNBUFFERED=1 python3.5 -Wdefault ./wqueue2.py |