https://github.com/stan-dev/stan
Raw File
Tip revision: 262ddd70aff3de513453fd52f370a81504fc9077 authored by Daniel Lee on 10 July 2015, 12:48:02 UTC
Merge pull request #1533 from stan-dev/release/v2.7.0
Tip revision: 262ddd7
.travis.yml
language: cpp

os:
  - linux
  - osx
  
compiler:
  - clang

before_install: make math-revert

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/mcmc
  -  TESTFOLDER=src/test/unit/model
  -  TESTFOLDER=src/test/unit/optimization
  -  TESTFOLDER=src/test/unit/services
  -  TESTFOLDER=src/test/unit/variational

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