From 85961482710ef158c692ed99f98ec997f0fc7f3d Mon Sep 17 00:00:00 2001 From: Michael Billington Date: Sat, 19 Mar 2016 22:14:37 +1100 Subject: [PATCH] update .travis.yml to use a matrix of versions in build --- .travis.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 21ba88d..0da8c1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,16 @@ language: python sudo: false cache: pip +matrix: + include: + - python: 2.7 + env: TOXENV=py27 + - python: 3.4 + env: TOXENV=py34 + - python: 3.5 + env: TOXENV=py35 before_install: - pip install tox # command to run tests script: - - tox \ No newline at end of file + - tox