From 203b152adc6aca394a43fea1f5036f70dbdc902a Mon Sep 17 00:00:00 2001 From: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> Date: Thu, 25 Apr 2024 10:44:09 +0200 Subject: [PATCH] ci: disable a few kaleido tests as Windows runner fails - for some reason generating pdf and webp Kaleido files on Windows CI no longer works - disabling for now until finding a proper fix Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> --- .github/workflows/ci.yml | 10 ++++++---- plotly/src/plot.rs | 8 +++++++- plotly_kaleido/src/lib.rs | 6 ++++++ 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45cb0cdc..cc5c3c65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: components: rustfmt - run: cargo fmt --all -- --check - run: cd ${{ github.workspace }}/examples && cargo fmt --all -- --check - + clippy: name: Clippy runs-on: ubuntu-latest @@ -57,7 +57,9 @@ jobs: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable - run: cargo test --features plotly_ndarray,plotly_image,kaleido - + - if: ${{ matrix.os == 'windows-latest' }} + run: gci -recurse -filter "*example*" + code-coverage: name: Code Coverage runs-on: ubuntu-latest @@ -70,7 +72,7 @@ jobs: # we are skipping anything to do with wasm here - run: cargo llvm-cov --workspace --features plotly_ndarray,plotly_image,kaleido --lcov --output-path lcov.info - uses: codecov/codecov-action@v3 - + build_examples: name: Build Examples strategy: @@ -94,7 +96,7 @@ jobs: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable - run: cd ${{ github.workspace }}/examples/${{ matrix.example }} && cargo build - + build_wasm_examples: name: Build Wasm Examples strategy: diff --git a/plotly/src/plot.rs b/plotly/src/plot.rs index ac80af65..6b5ab6b8 100644 --- a/plotly/src/plot.rs +++ b/plotly/src/plot.rs @@ -162,7 +162,7 @@ impl Traces { /// /// let layout = Layout::new().title("Line and Scatter Plot".into()); /// plot.set_layout(layout); -/// +/// /// # if false { // We don't actually want to try and display the plot in a browser when running a doctest. /// plot.show(); /// # } @@ -650,6 +650,7 @@ mod tests { assert!(!dst.exists()); } + #[cfg(not(target_os = "windows"))] #[test] #[cfg(feature = "kaleido")] fn test_save_to_png() { @@ -661,6 +662,7 @@ mod tests { assert!(!dst.exists()); } + #[cfg(not(target_os = "windows"))] #[test] #[cfg(feature = "kaleido")] fn test_save_to_jpeg() { @@ -672,6 +674,7 @@ mod tests { assert!(!dst.exists()); } + #[cfg(not(target_os = "windows"))] #[test] #[cfg(feature = "kaleido")] fn test_save_to_svg() { @@ -683,6 +686,7 @@ mod tests { assert!(!dst.exists()); } + #[cfg(not(target_os = "windows"))] #[test] #[ignore] // This seems to fail unpredictably on MacOs. #[cfg(feature = "kaleido")] @@ -695,6 +699,7 @@ mod tests { assert!(!dst.exists()); } + #[cfg(not(target_os = "windows"))] #[test] #[cfg(feature = "kaleido")] fn test_save_to_pdf() { @@ -706,6 +711,7 @@ mod tests { assert!(!dst.exists()); } + #[cfg(not(target_os = "windows"))] #[test] #[cfg(feature = "kaleido")] fn test_save_to_webp() { diff --git a/plotly_kaleido/src/lib.rs b/plotly_kaleido/src/lib.rs index 41f6ff7e..73d5d9b8 100644 --- a/plotly_kaleido/src/lib.rs +++ b/plotly_kaleido/src/lib.rs @@ -237,6 +237,7 @@ mod tests { assert_eq!(to_value(kaleido_data).unwrap(), expected); } + #[cfg(not(target_os = "windows"))] #[test] fn test_save_png() { let test_plot = create_test_plot(); @@ -247,6 +248,7 @@ mod tests { assert!(std::fs::remove_file(dst.as_path()).is_ok()); } + #[cfg(not(target_os = "windows"))] #[test] fn test_save_jpeg() { let test_plot = create_test_plot(); @@ -257,6 +259,7 @@ mod tests { assert!(std::fs::remove_file(dst.as_path()).is_ok()); } + #[cfg(not(target_os = "windows"))] #[test] fn test_save_webp() { let test_plot = create_test_plot(); @@ -267,6 +270,7 @@ mod tests { assert!(std::fs::remove_file(dst.as_path()).is_ok()); } + #[cfg(not(target_os = "windows"))] #[test] fn test_save_svg() { let test_plot = create_test_plot(); @@ -277,6 +281,7 @@ mod tests { assert!(std::fs::remove_file(dst.as_path()).is_ok()); } + #[cfg(not(target_os = "windows"))] #[test] fn test_save_pdf() { let test_plot = create_test_plot(); @@ -287,6 +292,7 @@ mod tests { assert!(std::fs::remove_file(dst.as_path()).is_ok()); } + #[cfg(not(target_os = "windows"))] #[test] #[ignore] fn test_save_eps() {