From a3b736a5e95aa1c2e16da5759e49e0922334c14a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 7 Jul 2017 01:30:39 -0400 Subject: [PATCH] Run benchmark tests in travis --- .travis.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61a58ca1..731343e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,29 +1,36 @@ sudo: false language: python python: - - '2.6' - '2.7' - '3.3' - '3.4' - '3.5' - - '3.6-dev' + - '3.6' - pypy - nightly + # command to install dependencies install: "pip install -U tox" -# # command to run tests + +# command to run tests env: matrix: - TOXENV=py-pytest28 - TOXENV=py-pytest29 - TOXENV=py-pytest30 + matrix: include: - python: '2.7' env: TOXENV=check - - python: '3.5' + - python: '3.6' env: TOXENV=check + - python: '2.7' + env: TOXENV=benchmark + - python: '3.6' + env: TOXENV=benchmark + script: - tox --recreate -e $TOXENV