Skip to content

Commit

Permalink
Increase test data pull timeout (#692)
Browse files Browse the repository at this point in the history
Tests would often fail because the data would not finish transfering
before the timeout threshold was reached. That timeout is now increased
so data should finish transferring in time.

Fixes #691
  • Loading branch information
WalterKolczynski-NOAA authored Sep 7, 2022
1 parent c721768 commit c33ea52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function(PULL_DATA THE_URL THE_FILE)
${CMAKE_CURRENT_BINARY_DIR}/data/${THE_FILE}
SHOW_PROGRESS
STATUS status
INACTIVITY_TIMEOUT 30
INACTIVITY_TIMEOUT 120
)
list(GET status 0 status_num)
if(NOT status_num EQUAL 0 OR NOT EXISTS "${CMAKE_CURRENT_BINARY_DIR}/data/${THE_FILE}")
Expand Down

0 comments on commit c33ea52

Please sign in to comment.