summaryrefslogtreecommitdiff
path: root/test/test_no_ssl.py
Commit message (Collapse)AuthorAgeFilesLines
* Add test case where idna is not installedHasan Ramezani2021-03-191-51/+1
|
* Remove support for Python 2 and 3.5Hugo van Kemenade2020-11-151-4/+4
| | | | | | | | - Upgrades syntax to Python 3.6+ with f-strings - Removes most usage of six - Removes documentation relevant to Python 2 - Removes universal wheel config - Removes mock dependency for testing
* Sort imports with 'isort'Quentin Pradet2020-10-011-0/+1
|
* Switch from 'self' to 'cls' in classmethods (#1701)Quentin Pradet2019-09-301-2/+2
|
* Stop using unittest (#1649)Quentin Pradet2019-07-051-4/+4
|
* Update assertions to pytest style (#1614)Ratan Kulshreshtha2019-05-281-1/+2
|
* Auto formatting using blackRatan Kulshreshtha2019-05-251-7/+8
|
* Drop support for Python 2.6 (#1429)Hugo2018-08-231-10/+2
|
* Merge upstreamSeth Michael Larson2017-01-241-2/+2
|\
| * F401 Entity imported but unusedSeth Michael Larson2017-01-231-2/+2
| |
* | s/version/version_info/Seth Michael Larson2017-01-221-1/+1
| |
* | Add unittest2 for more testcasesSeth Michael Larson2017-01-221-1/+4
|/
* Rough stab at App Engine environment tests.Jon Wayne Parrott2015-06-011-1/+1
| | | | | | | | | | * Added test/appengine, containing some code to step the sandbox version of httplib/socket/urllib. * Added test_urlfetch.py, checking the URLFetch is used when making http and https requests (not sure if this is the desired behavior at the moment). * Added GAE environment to tox, currently requires you to set your PYTHONPATH=~/google-cloud-sdk/platform/google_appengine. Travis should test for this. To run tests locally, just install the cloud sdk (cloud.google.com/sdk) and set the python path as above, then run tox -e gae. I can add more tests to cover situations where sockets are enabled, but I just wanted to get something basic out here to open the dialog.
* test import without ssl in its own testcaseThomas Weißschuh2015-04-101-0/+2
|
* use the module stash per testcaseThomas Weißschuh2015-04-101-5/+2
| | | | | If we use setUpClass with diamond inheritance (later commits) we get errors on py26, as super() won't find the setUpClass from the builtin TestCase class
* arm the no_ssl testThomas Weißschuh2015-04-101-6/+1
|
* do not fail if we are not loadedThomas Weißschuh2015-04-091-1/+1
|
* also pop the namespace itselfThomas Weißschuh2015-04-091-0/+2
|
* fix typoThomas Weißschuh2015-04-091-1/+1
|
* rerename the no_ssl testThomas Weißschuh2015-04-091-0/+93
| | | | The module stash removes the need to have it run last
* properly remove urllib3 from import cacheThomas Weißschuh2015-04-091-56/+0
|
* test import without ssl moduleThomas Weißschuh2015-04-091-0/+56
duplicates #586