Skip to content

Commit

Permalink
windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Oct 9, 2022
1 parent c6679b4 commit b0cc4f8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions tests/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,16 @@ fn integration_wasm_hello_world() {
));

// Make sure we're actually running wasm
assert!(
Path::new("test-crates/venvs/hello-world-py3-wasm32-wasi/bin/hello-world.wasm").is_file()
)
assert!(Path::new("test-crates")
.join("venvs")
.join("hello-world-py3-wasm32-wasi")
.join(if cfg!(target_os = "windows") {
"Scripts"
} else {
"bin"
})
.join("hello-world.wasm")
.is_file())
}

#[test]
Expand Down

0 comments on commit b0cc4f8

Please sign in to comment.