Skip to content

Commit f8d0ddb

Browse files
committed
adding test script
1 parent 64cde37 commit f8d0ddb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

test-all.sh

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env bash
2+
3+
echo 'Running:'
4+
echo ' - CmdStan tests'
5+
echo ' - Stan tests'
6+
echo ' - Stan Math Library tests'
7+
echo ''
8+
echo '------------------------------------------------------------'
9+
echo 'CmdStan tests'
10+
./runCmdStanTests.py src/test/interface
11+
12+
13+
echo ''
14+
echo '------------------------------------------------------------'
15+
echo 'Stan tests'
16+
pushd stan
17+
./runTests.py src/test
18+
popd
19+
20+
21+
echo ''
22+
echo '------------------------------------------------------------'
23+
echo 'Stan Math Library tests'
24+
pushd stan/lib/stan_math_2.7.0
25+
./runTests.py test/unit
26+
./runTests.py test/prob
27+
popd

0 commit comments

Comments
 (0)