We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ec8ed commit 419c96dCopy full SHA for 419c96d
crates/crates_io_og_image/src/lib.rs
@@ -431,6 +431,12 @@ mod tests {
431
}
432
433
fn skip_if_typst_unavailable() -> bool {
434
+ if matches!(var("CI"), Ok(Some(_))) {
435
+ // Do not skip tests in CI environments, even if Typst is unavailable.
436
+ // We want the test to fail instead of silently skipping.
437
+ return false;
438
+ }
439
+
440
std::process::Command::new("typst")
441
.arg("--version")
442
.output()
0 commit comments