summaryrefslogtreecommitdiff
path: root/third_party/pep8/Makefile
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2015-04-25 15:34:13 +0000
committerJeremy Allison <jra@samba.org>2015-04-27 21:18:10 +0200
commita001b0385412786c50553cfb38c146dfb3646142 (patch)
treec4bfaf23e826cf036dd66d4f6e46f1e4d23b954d /third_party/pep8/Makefile
parent0621f07eb482daf7495f6314b0af32853573cb82 (diff)
downloadsamba-a001b0385412786c50553cfb38c146dfb3646142.tar.gz
pep8: Move to third_party/.
Also, update to latest upstream version. Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'third_party/pep8/Makefile')
-rw-r--r--third_party/pep8/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/pep8/Makefile b/third_party/pep8/Makefile
new file mode 100644
index 00000000000..29b243d4c5e
--- /dev/null
+++ b/third_party/pep8/Makefile
@@ -0,0 +1,13 @@
+test :
+ python pep8.py --testsuite testsuite
+
+selftest :
+ python pep8.py --statistics pep8.py
+
+doctest :
+ python pep8.py --doctest
+
+unittest :
+ python -m testsuite.test_all
+
+alltest : test selftest doctest unittest