From 3ea66343284e45b72bbe1e2558f7cc6baadc274c Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Wed, 5 Aug 2020 13:59:00 +0530 Subject: [PATCH] fix: run test builds for py2.7 and py3.7 --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4ad7e0f6..295e057d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,6 +55,16 @@ matrix: env: TEST=bench script: python bench/tests/test_setup_production.py TestSetupProduction.production + - name: "Python 2.7 Tests" + python: 2.7 + env: TEST=bench + script: python -m unittest -v bench.tests.test_init + + - name: "Python 3.7 Tests" + python: 3.7 + env: TEST=bench + script: python -m unittest -v bench.tests.test_init + - name: "Python 3.6 Easy Install" python: 3.6 env: TEST=easy_install