Skip to content

Commit

Permalink
Increase test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Jan 21, 2024
1 parent d0b4026 commit ca10b88
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
--schedule-random \
--output-on-failure \
--no-tests=error \
--timeout 90 \
--timeout 240 \
-j $(nproc) |&
head -n 1000
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ jobs:
--schedule-random \
--output-on-failure \
--no-tests=error \
--timeout 180 2>&1 |
--timeout 240 2>&1 |
head -n 1000
run-integration-tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ jobs:
--schedule-random \
--output-on-failure \
--no-tests=error \
--timeout 200 \
--timeout 240 \
-j $(nproc) |&
head -n 1000
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,9 @@ jobs:
--schedule-random \
--output-on-failure \
--no-tests=error \
--timeout 180 \
--exclude-regex 'Cooler: dataset large read\/write.*' |&
--timeout 240 \
--exclude-regex 'Cooler: dataset large read\/write.*' \
--exclude-regex 'HiC: HiCFileWriter' |&
tail -n 1000
windows-ci-status-check:
Expand Down
2 changes: 1 addition & 1 deletion test/units/hic/file_writer_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ static void hic_file_writer_create_file_test(const std::string& path1, const std
}

// NOLINTNEXTLINE(readability-function-cognitive-complexity)
TEST_CASE("HiC: HiCFileWriter", "[hic][v9][short]") {
TEST_CASE("HiC: HiCFileWriter", "[hic][v9][long]") {
const auto path1 = (datadir / "4DNFIZ1ZVXC8.hic9").string();
const auto path2 = (testdir() / "hic_writer_001.hic").string();
const auto path3 = (testdir() / "hic_writer_002.hic").string();
Expand Down

0 comments on commit ca10b88

Please sign in to comment.