Skip to content

Commit

Permalink
test: ignore slow tests locally, but run them on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fcoury committed Jul 12, 2024
1 parent 85d670e commit b7d13e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
run: cargo build --verbose

- name: Test
run: cargo test --verbose
run: cargo test --verbose -- --ignored
1 change: 1 addition & 0 deletions tests/transpiler_test.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use std::process::Command;

#[test]
#[ignore]
fn test_transpile_scripts() -> anyhow::Result<()> {
// executes script.sh and checks for exit code
let output = Command::new("bash")
Expand Down

0 comments on commit b7d13e3

Please sign in to comment.