From 29e935c1d03ef362b0b81909169b0b3777386b98 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Fri, 9 Dec 2016 15:46:22 -0500 Subject: [PATCH] [CI] Add 3to2 and VERBOSE options --- .travis.yml | 2 ++ appveyor.yml | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e1157f100e..a96206b28e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,11 +15,13 @@ addons: - libboost-dev before_script: | pip install --user --install-option="--no-cython-compile" cython + pip install --user 3to2 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update brew install scons brew install boost fi + export PATH=$HOME/.local/bin:$PATH rm -f cantera.conf script: - scons build -j2 VERBOSE=y python_package=full python3_package=n blas_lapack_libs=lapack,blas optimize=n diff --git a/appveyor.yml b/appveyor.yml index 9ff79b150d..31e40e50bf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,9 +5,10 @@ install: C:\Python27-x64\Scripts\pip.exe install --egg scons C:\Python27-x64\Scripts\pip.exe install numpy C:\Python27-x64\Scripts\pip.exe install cython + C:\Python27-x64\Scripts\pip.exe install 3to2 build_script: -- cmd: C:\Python27-x64\scons build -j2 boost_inc_dir=C:\Libraries\boost_1_62_0 debug=n +- cmd: C:\Python27-x64\scons build -j2 boost_inc_dir=C:\Libraries\boost_1_62_0 debug=n VERBOSE=y test_script: - ps: |