Skip to content

Commit a093a9f

Browse files
authored
Merge pull request #17 from alimanfoo/test_py36
Include py36 in test matrix
2 parents 45af9ce + be63a3a commit a093a9f

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
language: python
22

3+
branches:
4+
only:
5+
- master
6+
37
sudo: false
48

59
addons:
@@ -11,6 +15,7 @@ python:
1115
- 2.7
1216
- 3.4
1317
- 3.5
18+
- 3.6
1419

1520
install:
1621
- pip install -U tox-travis

appveyor.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ environment:
2828
- PYTHON: "C:\\Python35-x64"
2929
PYTHON_VERSION: "3.5"
3030

31+
- PYTHON: "C:\\Python36"
32+
PYTHON_VERSION: "3.6"
33+
34+
- PYTHON: "C:\\Python36-x64"
35+
PYTHON_VERSION: "3.6"
36+
3137
install:
3238
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
3339
- git submodule update --init --recursive

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py34, py35, docs
7+
envlist = py27, py34, py35, py36, docs
88

99
[testenv]
1010
setenv =
1111
PYTHONHASHSEED = 42
1212
commands =
1313
py27: pip install -U backports.lzma
1414
python setup.py build_ext --inplace
15-
py27: nosetests -v numcodecs
16-
py34,py35: nosetests -v --with-coverage --cover-erase --cover-min-percentage=100 --cover-package=numcodecs --with-doctest --doctest-options=+NORMALIZE_WHITESPACE numcodecs
17-
py35: flake8 numcodecs
15+
py27,py34,py35: nosetests -v numcodecs
16+
py36: nosetests -v --with-coverage --cover-erase --cover-package=numcodecs --with-doctest --doctest-options=+NORMALIZE_WHITESPACE numcodecs
17+
py36: flake8 numcodecs
1818
python setup.py bdist_wheel
1919
deps =
2020
-rrequirements_test.txt

0 commit comments

Comments
 (0)