summaryrefslogtreecommitdiff
path: root/tests/test_proxy.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix proxy testChris Dent2018-10-231-4/+4
| | | | | | | | | | | The proxy test relied on pythonpaste.org being up and existing. It is neither. So instead we use httpbin.org which is often used for this kind of thing. Unfortunately httpbin is now a react app which means a lot of the HTML is generated client-side, which means we need to choose wisely. As the original comments indicate, the test is not particularly robust and remains so.
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+12
See https://www.python.org/dev/peps/pep-0479/