We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af10fa0 + 94987b8 commit ddf478bCopy full SHA for ddf478b
2 files changed
.github/workflows/build.yml
@@ -82,6 +82,9 @@ jobs:
82
83
- name: Run tests
84
run: cargo test --locked
85
+
86
+ - name: Run tests in production mode
87
+ run: cargo test --locked --release
88
89
- name: Build debug binary
90
run: cargo build --locked
tests/cli_integration_tests.rs
@@ -13,7 +13,7 @@ mod cli_integration_test {
13
// Assert
14
assertion
15
.success()
16
- .stdout(is_match("^cotp \\d+\\.\\d+\\.\\d+-DEBUG-.+").unwrap())
+ .stdout(is_match("^cotp \\d+\\.\\d+\\.\\d+(?:-DEBUG-.+)?").unwrap())
17
.stderr(is_empty());
18
}
19
0 commit comments