Skip to content

Commit

Permalink
Merge pull request #23 from moonbitlang/disable-a-network-related-tes…
Browse files Browse the repository at this point in the history
…ts-on-local

internal: disable a network related test on local
  • Loading branch information
lijunchen authored Jul 18, 2024
2 parents 118f286 + f4797be commit 4025b42
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/moon/tests/test_cases/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4196,6 +4196,9 @@ fn test_moon_run_with_cli_args() {

#[test]
fn test_third_party() {
if std::env::var("CI").is_err() {
return;
}
let dir = TestDir::new("third_party.in");
get_stdout_with_args_and_replace_dir(&dir, ["update"]);
get_stdout_with_args_and_replace_dir(&dir, ["build"]);
Expand Down

0 comments on commit 4025b42

Please sign in to comment.