From 11943bbc6f7f6c81c682a49f180d6b89ba1839e8 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Sun, 12 Nov 2017 21:17:52 -0500 Subject: [PATCH] Update options for Travis Python tests --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9670d5b63..c0ab9beaf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,9 +32,9 @@ before_script: | rm -f cantera.conf script: | if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - scons build -j2 VERBOSE=y python_package=full python3_package=y python3_cmd=/usr/bin/python3 blas_lapack_libs=lapack,blas optimize=n coverage=y + scons build -j2 VERBOSE=y python_package=none python2_package=full python3_package=full python3_cmd=/usr/bin/python3 blas_lapack_libs=lapack,blas optimize=n coverage=y else - scons build -j2 VERBOSE=y python_package=full python3_package=y blas_lapack_libs=lapack,blas optimize=n coverage=y + scons build -j2 VERBOSE=y python_package=none python2_package=full python3_package=full blas_lapack_libs=lapack,blas optimize=n coverage=y fi scons test after_success: |