Main change here (besides getting the tests to run) is making sure that environ key's and values are strings, decoded from bytes via ISO-8859-1. thanks to: http://mail.python.org/pipermail/web-sig/2012-October/005204.html more tests will be required which do proper unicode handling in headers and bodies, but first the https changes
13 lines
230 B
Makefile
13 lines
230 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 -x test
|