Move test_libtorch from win-test2 to win-test1 group (#35540)

Summary:
Let see if it makes both test branches a bit more balanced
Pull Request resolved: https://github.com/pytorch/pytorch/pull/35540

Test Plan: CI

Differential Revision: D20704642

Pulled By: malfet

fbshipit-source-id: 4e2ab5a80adfe78620206d4eaea30207194379cc
This commit is contained in:
Nikita Shulga
2020-03-27 13:06:43 -07:00
committed by Facebook GitHub Bot
parent ef511d884b
commit 4529d03971

View File

@ -43,11 +43,11 @@ run_tests() {
$SCRIPT_HELPERS_DIR/test_libtorch.bat
else
if [[ "${JOB_BASE_NAME}" == *-test1 ]]; then
$SCRIPT_HELPERS_DIR/test_python_nn.bat "$DETERMINE_FROM"
$SCRIPT_HELPERS_DIR/test_python_nn.bat "$DETERMINE_FROM" && \
$SCRIPT_HELPERS_DIR/test_libtorch.bat
elif [[ "${JOB_BASE_NAME}" == *-test2 ]]; then
$SCRIPT_HELPERS_DIR/test_python_all_except_nn.bat "$DETERMINE_FROM" && \
$SCRIPT_HELPERS_DIR/test_custom_script_ops.bat && \
$SCRIPT_HELPERS_DIR/test_libtorch.bat
$SCRIPT_HELPERS_DIR/test_custom_script_ops.bat
fi
fi
}