summaryrefslogtreecommitdiff
path: root/tests/test_auth
Commit message (Collapse)AuthorAgeFilesLines
* Update auth_tkt.py for python3 compatibility (#45)marzetas2020-01-261-0/+120
| | | | | | | | * Update auth_tkt.py urllib imports to work in python3 * Add tests for auth AuthTicket * Adapt auth_tkt to be python2 and python3 compatible
* Pytest fixes (#9)Daniel Hahler2018-10-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | * pytest: fix collection warnings via __test__=False Fixes > "cannot collect test class %r because it has a __init__ constructor Ref: https://github.com/pytest-dev/pytest/issues/2007 * pytest: configure testpaths This is faster with test collection. * pytest: fix warning with doctests Fixes > /usr/lib/python3.7/site-packages/_pytest/python.py:764: > RemovedInPytest4Warning: usage of Generator.Function is deprecated, > please use pytest.Function instead * Minor fixes around s/py.test/pytest/
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-083-0/+139
See https://www.python.org/dev/peps/pep-0479/