Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
test: ignore windows remapping tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Apr 18, 2023
1 parent 80eac38 commit ffcf7dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions ethers-solc/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -989,6 +989,7 @@ mod tests {
}

#[test]
#[cfg_attr(windows, ignore = "Windows remappings #2347")]
fn can_find_library_ancestor() {
let mut config = ProjectPathsConfig::builder().lib("lib").build().unwrap();
config.root = "/root/".into();
Expand Down
6 changes: 6 additions & 0 deletions ethers-solc/src/remappings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,7 @@ mod tests {
}

#[test]
#[cfg_attr(windows, ignore = "Windows remappings #2347")]
fn find_remapping_dapptools() {
let tmp_dir = tempdir("lib").unwrap();
let tmp_dir_path = tmp_dir.path();
Expand Down Expand Up @@ -837,6 +838,7 @@ mod tests {
}

#[test]
#[cfg_attr(windows, ignore = "Windows remappings #2347")]
fn can_resolve_geb_remappings() {
let tmp_dir = tempdir("geb").unwrap();
let paths = [
Expand Down Expand Up @@ -1050,6 +1052,7 @@ mod tests {
}

#[test]
#[cfg_attr(windows, ignore = "Windows remappings #2347")]
fn recursive_remappings() {
let tmp_dir = tempdir("lib").unwrap();
let tmp_dir_path = tmp_dir.path();
Expand Down Expand Up @@ -1151,6 +1154,7 @@ mod tests {
}

#[test]
#[cfg_attr(windows, ignore = "Windows remappings #2347")]
fn simple_dapptools_remappings() {
let tmp_dir = tempdir("lib").unwrap();
let tmp_dir_path = tmp_dir.path();
Expand Down Expand Up @@ -1189,6 +1193,7 @@ mod tests {
}

#[test]
#[cfg_attr(windows, ignore = "Windows remappings #2347")]
fn hardhat_remappings() {
let tmp_dir = tempdir("node_modules").unwrap();
let tmp_dir_node_modules = tmp_dir.path().join("node_modules");
Expand Down Expand Up @@ -1245,6 +1250,7 @@ mod tests {
}

#[test]
#[cfg_attr(windows, ignore = "Windows remappings #2347")]
fn find_openzeppelin_remapping() {
let tmp_dir = tempdir("lib").unwrap();
let tmp_dir_path = tmp_dir.path();
Expand Down

0 comments on commit ffcf7dd

Please sign in to comment.