diable test_yolov3 in musl (#29216)

release/2.0-rc1
Chen Weihang 4 years ago committed by GitHub
parent 4fec182d24
commit 786e69e9c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,13 +1,27 @@
file(GLOB TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "test_*.py")
string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")
if(WITH_MUSL)
# TODO: In the musl docker environment provided by SEC,
# the test_yolov3 will randomly calculate the result of
# nan, error like:
# AssertionError:
# dygraph_loss: [15742.11914062 9392.61047363]
# static_loss: [nan, nan]
# SEC needs to follow up on this issue, and need to be
# resolved before CI requared
LIST(REMOVE_ITEM TEST_OPS test_yolov3)
endif()
foreach(TEST_OP ${TEST_OPS})
py_test_modules(${TEST_OP} MODULES ${TEST_OP})
endforeach(TEST_OP)
set_tests_properties(test_se_resnet PROPERTIES TIMEOUT 900)
set_tests_properties(test_tsm PROPERTIES TIMEOUT 900)
set_tests_properties(test_yolov3 PROPERTIES TIMEOUT 900 LABELS "RUN_TYPE=EXCLUSIVE")
if(NOT WITH_MUSL)
set_tests_properties(test_yolov3 PROPERTIES TIMEOUT 900 LABELS "RUN_TYPE=EXCLUSIVE")
endif()
set_tests_properties(test_mobile_net PROPERTIES TIMEOUT 120)
set_tests_properties(test_seq2seq PROPERTIES TIMEOUT 120)
set_tests_properties(test_cycle_gan PROPERTIES TIMEOUT 120)

Loading…
Cancel
Save