From 516950309d66a52432d6ac5ef9b571b1eb32148a Mon Sep 17 00:00:00 2001 From: Yang Wang Date: Thu, 16 Jul 2020 16:56:30 +0800 Subject: [PATCH] Move orca learn ray tests to a ray sub dir (#2577) * move orca learn ray tests to a ray sub dir * fix path --- python/orca/test/dev/run-pytests-ray | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/python/orca/test/dev/run-pytests-ray b/python/orca/test/dev/run-pytests-ray index 12bdcf48b44..299076b4919 100755 --- a/python/orca/test/dev/run-pytests-ray +++ b/python/orca/test/dev/run-pytests-ray @@ -33,8 +33,8 @@ then exit $exit_status_1 fi -echo "Running MXNetTrainer tests" -python -m pytest -v ../test/zoo/orca/learn/mxnet +echo "Running orca learn ray tests" +python -m pytest -v ../test/zoo/orca/learn/ray exit_status_2=$? if [ $exit_status_2 -ne 0 ]; then @@ -65,10 +65,3 @@ then exit $exit_status_5 fi -echo "Running PyTorchTrainer tests" -python -m pytest -v ../test/zoo/orca/learn/pytorch -exit_status_6=$? -if [ $exit_status_6 -ne 0 ]; -then - exit $exit_status_6 -fi