Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 1509cbc

Browse files
committed
Add python 3.6 to the test suite
1 parent 669253f commit 1509cbc

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- "2.7"
55
- "3.4"
66
- "3.5"
7+
- "3.6"
78
- "pypy-5.3.1"
89

910
env:
@@ -19,7 +20,7 @@ matrix:
1920

2021
install:
2122
- ".travis/install.sh"
22-
before_script: "flake8 --max-complexity 15 hyper test"
23+
before_script: "flake8 hyper test"
2324

2425
script:
2526
- ".travis/run.sh"

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[wheel]
22
universal = 1
3+
4+
[flake8]
5+
max-complexity = 15

test/test_SSLContext.py

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def test_custom_context(self):
4040

4141
assert not hyper.tls._context.check_hostname
4242
assert hyper.tls._context.verify_mode == ssl.CERT_NONE
43-
assert hyper.tls._context.options & ssl.OP_NO_COMPRESSION == 0
4443

4544
def test_HTTPConnection_with_custom_context(self):
4645
context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, pypy, lint
2+
envlist = py{27,34,35,36}, pypy, lint
33

44
[testenv]
55
deps= -r{toxinidir}/test_requirements.txt
@@ -12,6 +12,6 @@ commands=
1212
commands= py.test {toxinidir}/test/
1313

1414
[testenv:lint]
15-
basepython=python3.5
15+
basepython=python3
1616
deps = flake8==2.5.4
17-
commands = flake8 --max-complexity 15 hyper test
17+
commands = flake8 hyper test

0 commit comments

Comments
 (0)