We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bb0f2a commit a13c4c6Copy full SHA for a13c4c6
Makefile
@@ -111,3 +111,17 @@ build:
111
upload: clean sdist wheel
112
twine upload dist/*
113
114
+# Code test tools
115
+#
116
+.PHONY: clonedigger
117
+clonedigger:
118
+ clonedigger -l python -o clonedigger.html tsip
119
+
120
+.PHONY: flake8
121
+flake8:
122
+ flake8 --statistics --exit-zero tsip
123
124
+.PHONY: pyntch
125
+pyntch:
126
+ tchecker.py tsip/*.py
127
setup.cfg
@@ -1,7 +1,6 @@
1
[wheel]
2
universal = 1
3
4
-
5
[nosetests]
6
verbosity=2
7
stop=1
@@ -11,3 +10,6 @@ with-coverage=1
11
10
cover-package=tsip
12
detailed-errors=1
13
+[flake8]
14
+max-line-length = 160
15
+ignore = E303
0 commit comments