mirror of
https://github.com/vale981/ray
synced 2025-03-10 13:26:39 -04:00
15 lines
369 B
Bash
15 lines
369 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
|
||
|
# Linux test uses Docker
|
||
|
docker run amplab/ray:test-base bash -c 'source setup-env.sh && cd test && python runtest.py && python array_test.py && python microbenchmarks.py'
|
||
|
else
|
||
|
# Mac OS X test
|
||
|
source setup-env.sh
|
||
|
pushd test
|
||
|
runtest.py
|
||
|
python array_test.py
|
||
|
python microbenchmarks.py
|
||
|
popd
|
||
|
fi
|