https://github.com/stan-dev/stan
Raw File
Tip revision: 52cca2d1f1bff5464dc4812030a9ea9c2d739938 authored by Jonah Gabry on 19 February 2016, 06:54:24 UTC
Update CONTRIBUTING.md
Tip revision: 52cca2d
.travis.yml
language: cpp

sudo: false

os:
  - linux
  - osx
  
compiler:
  - clang
  - gcc

before_install: make math-revert

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

matrix:
  fast_finish: true

env:
  -  TESTFOLDER=src/test/unit/interface_callbacks
  -  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