diff --git a/.jenkins/pytorch/win-test.sh b/.jenkins/pytorch/win-test.sh index 080982ab4f28..b2c4aa30ddbe 100755 --- a/.jenkins/pytorch/win-test.sh +++ b/.jenkins/pytorch/win-test.sh @@ -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 }