mirror of
https://github.com/wassname/ray.git
synced 2026-08-11 11:24:51 +08:00
15 lines
376 B
Bash
Executable File
15 lines
376 B
Bash
Executable File
#!/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
|
|
python runtest.py
|
|
python array_test.py
|
|
python microbenchmarks.py
|
|
popd
|
|
fi
|