python <= 3.2 doesn't care for for u'' strings but unicode_literals from __future__ has side effects we don't want. Other fixes from flake8
13 lines
241 B
Makefile
13 lines
241 B
Makefile
.PHONY: test clean
|
|
|
|
clean:
|
|
find wsgi_intercept -name "*.pyc" |xargs rm || true
|
|
rm -r dist || true
|
|
rm -r build || true
|
|
rm -r wsgi_intercept.egg-info || true
|
|
rm *.bundle || true
|
|
rm -r *-bundle* || true
|
|
|
|
test:
|
|
py.test --tb=short -x test
|