https://github.com/stan-dev/stan
Raw File
Tip revision: 4a0b8fcb7ba259db48b66c50ac9b0de2c3da38e0 authored by Rob Trangucci on 01 June 2015, 18:45:03 UTC
b f/i-1189 updated make/tests to tests fvar<double> compilation
Tip revision: 4a0b8fc
.travis.yml
language: cpp

os:
  - linux
  - os
  
compiler:
  - clang

before_script: echo "CC=$CXX" > make/local

matrix:
  fast_finish: true

env:
  - TESTFOLDER=src/test/unit/interface
  - TESTFOLDER=src/test/unit/io
  - TESTFOLDER=src/test/unit/lang
  - TESTFOLDER=src/test/unit/math/prim
  - TESTFOLDER=src/test/unit/math/rev
  - TESTFOLDER=src/test/unit/math/fwd
 # - TESTFOLDER=src/test/unit/math/mix  ## commenting this out due to segfault on travis
  - TESTFOLDER=src/test/unit/mcmc
  - TESTFOLDER=src/test/unit/memory
  - TESTFOLDER=src/test/unit/model
  - TESTFOLDER=src/test/unit/optimization
  - TESTFOLDER=src/test/unit/services

script: ./runTests.py $TESTFOLDER
back to top