Skip to content

Commit feb5630

Browse files
committed
ci(workflow): split Windows unit-c job into unit-c and unit-coverage
1 parent c436750 commit feb5630

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
- name: "unit a-b"
5050
test_path: "tests/unit/[a-b]*_test.sh"
5151
- name: "unit c"
52-
test_path: "tests/unit/c*_test.sh"
52+
test_path: "tests/unit/ch*_test.sh tests/unit/cl*_test.sh tests/unit/console*_test.sh tests/unit/cu*_test.sh"
53+
- name: "unit coverage"
54+
test_path: "tests/unit/coverage_*_test.sh"
5355
- name: "unit d-p"
5456
test_path: "tests/unit/[d-p]*_test.sh"
5557
- name: "unit r-z"

tests/unit/assert_duration_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function test_successful_assert_duration_within() {
66
}
77

88
function test_successful_assert_duration_within_fast_command() {
9-
assert_empty "$(assert_duration "echo hello" 500)"
9+
assert_empty "$(assert_duration "echo hello" 5000)"
1010
}
1111

1212
function test_unsuccessful_assert_duration_exceeds_threshold() {

0 commit comments

Comments
 (0)