1 parent f1913a0 commit 1cdf4aeCopy full SHA for 1cdf4ae
1 file changed
src/bin/deprun.rs
@@ -825,6 +825,11 @@ mod tests {
825
#[cfg(windows)]
826
#[test]
827
fn test_deprun_vcxproj() {
828
+ if std::env::var("CI").is_ok() {
829
+ eprintln!("Skipping test in CI environment");
830
+ return;
831
+ }
832
+
833
ensure_binary_built();
834
let manifest_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
835
let vcxproj_path = manifest_dir
@@ -856,6 +861,11 @@ mod tests {
856
861
857
862
858
863
fn test_deprun_vcxproj_user() {
864
865
866
867
868
859
869
860
870
871
let exe_path = manifest_dir
0 commit comments