Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
language: python

branches:
only:
- master

sudo: false

addons:
Expand All @@ -11,6 +15,7 @@ python:
- 2.7
- 3.4
- 3.5
- 3.6

install:
- pip install -U tox-travis
Expand Down
6 changes: 6 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ environment:
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"

- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6"

- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"

install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- git submodule update --init --recursive
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py34, py35, docs
envlist = py27, py34, py35, py36, docs

[testenv]
setenv =
PYTHONHASHSEED = 42
commands =
py27: pip install -U backports.lzma
python setup.py build_ext --inplace
py27: nosetests -v numcodecs
py34,py35: nosetests -v --with-coverage --cover-erase --cover-min-percentage=100 --cover-package=numcodecs --with-doctest --doctest-options=+NORMALIZE_WHITESPACE numcodecs
py35: flake8 numcodecs
py27,py34,py35: nosetests -v numcodecs
py36: nosetests -v --with-coverage --cover-erase --cover-package=numcodecs --with-doctest --doctest-options=+NORMALIZE_WHITESPACE numcodecs
py36: flake8 numcodecs
python setup.py bdist_wheel
deps =
-rrequirements_test.txt
Expand Down