Skip to content

Commit

Permalink
Disable test from running locally
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Nov 24, 2022
1 parent 4ec584c commit 2145c2d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/integration/cli/tests/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,11 @@ fn run_no_start_wasm_report_error() -> anyhow::Result<()> {
// Test that changes to wapm run don't break wasmer run
#[test]
fn test_wapm_run_works() -> anyhow::Result<()> {
// only run this test on the CI, not locally
if std::env::var("GITHUB_TOKEN").is_err() {
return Ok(());
}

let temp_dir = tempfile::tempdir()?;
let path = temp_dir.path();
let output = Command::new("wapm")
Expand Down

0 comments on commit 2145c2d

Please sign in to comment.