aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-07-13 12:34:48 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2015-07-13 12:34:48 +0200
commitdc80ec6dfa1c740115cced078cec1d61bd1b6b85 (patch)
treee641b7bb1b2ba07016e3cc4e61bd3dc76dddfe6b /Makefile
parentcb662990003e86acc6fd8934fda83b379f5cbe08 (diff)
downloadipaddress-dc80ec6dfa1c740115cced078cec1d61bd1b6b85.tar.gz
Apply and test PEP8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0e1524f..980a83c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,14 @@
+default: test
+
+test:
+ flake8 ipaddress.py test_ipaddress.py --ignore E501
+ python test_ipaddress.py
+
pypi:
python setup.py sdist bdist_wheel upload
clean:
rm -rf -- build dist ipaddress.egg-info
-.PHONY: clean pypi
+.PHONY: default test clean pypi