Tag 1.1.1

-----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1
 
 iQIcBAABAgAGBQJWOo1IAAoJEP5lRo7X+zE3sT8QAK2AgJP6+PVSFIQQa1ew3OsB
 yIzg7QXgDqZdte+rh6O8qW4Bx9eVMkpGDlyag/c7HHZVXg/OLoTg+PMJByYB6+tj
 tGTE3pZeEDUaH8pxsF40wuD7W4PVKmOI3WBhRSsDRM7Zv3NP6jVh4H3HjMu1UgtD
 7ereEfz5HxGiJ/+y44IVMwI/pV1dYV4EvY4Tsy0wOA1OLZRgZkZCeyROMEd+juzS
 pLYGsogrT6hi7zYkio8eR1e3spkLYNhZeHbhzOfxnZasFQxOxqJ2qjQwhmsfHtBL
 qKaaGehgpfZIuuHiw/MVew3tr/7GMWjMrZl14fj71Wn5YvEw0kQUDkCRbi7I26mJ
 K0iYiIXP9AsruH1uVNsBspn5gnX7LDuI1kSay6EEc9Pi41RAGCVDddYmwAiGi8xS
 Y8pQJ1K/3suO+RW9YSsr2SY1xrhuhkm7k1T6IrapjQ/3LdZ20T93hFECIrpuDHg+
 27wK+hvEQ8pz5KI2nWLN2IGySvsWnaHY7AAo0K9OUHA+t6vjhFwBlpgHgIbFW02u
 78/oNlELbDJAhhmSAaqRVOHHmy2Sm+7hSI6o+oZY+i07VmWdKkAay0wu6rCVGI96
 h5TWyO+TjdoGX/VD1swm5U8jJe45O3gDvsQ9QbazZipDys+k8ADh9Dz2vZ1SfnET
 5xAmN/PkB0FN7mWpOSI9
 =GMlM
 -----END PGP SIGNATURE-----

Merge tag '1.1.1' into debian/unstable

Tag 1.1.1
This commit is contained in:
Thomas Goirand 2015-11-27 12:41:41 +01:00
commit 3b110a9a1b
4 changed files with 43 additions and 2 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
AUTHORS
ChangeLog
*.egg-info/
dist/
.tox/

View File

@ -31,7 +31,7 @@ except ImportError:
InsecureRequestWarning = None
try:
from requests.packages.urllib3.exceptions import SubjectAltNameWarning
from requests.packages.urllib3.exceptions import SubjectAltNameWarning
except ImportError:
try:
from urllib3.exceptions import SubjectAltNameWarning
@ -44,5 +44,5 @@ def squelch_warnings(insecure_requests=True):
warnings.filterwarnings('ignore', category=SubjectAltNameWarning)
if InsecurePlatformWarning:
warnings.filterwarnings('ignore', category=InsecurePlatformWarning)
if insecure_requests and InsecureRequestWarning):
if insecure_requests and InsecureRequestWarning:
warnings.filterwarnings('ignore', category=InsecureRequestWarning)

1
test-requirements.txt Normal file
View File

@ -0,0 +1 @@
flake8>=2.2.4,<=2.4.1

35
tox.ini Normal file
View File

@ -0,0 +1,35 @@
[tox]
minversion = 1.6
skipsdist = True
envlist = pep8, py27
[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
python setup.py testr --slowest --testr-args='{posargs}'
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
commands = flake8 {posargs}
[testenv:cover]
commands =
python setup.py testr --coverage
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:venv]
commands = {posargs}
[flake8]
# These are ignored intentionally in openstack-infra projects;
# please don't submit patches that solely correct them or enable them.
ignore = E125,E129,H
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg