Install cram in home directory and only if tests are active

This commit is contained in:
Snaipe 2016-01-14 12:40:01 +01:00
parent 6fff06a2ee
commit 23aab98c90

View file

@ -90,7 +90,10 @@ before_install:
brew unlink cmake
brew install llvm cmake
fi
- pip install cram
- |
if [ "${TESTS:-ON}" = "ON" ]; then
pip install --user cram
fi
- export CXX=${CC/gcc/g++}; export CXX=${CXX/clang/clang++}
- $CC --version
- $CXX --version