From 3c68ebc30d074bc77c47b25fbe5d9d7b355103e0 Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Tue, 1 Apr 2025 09:04:29 +0200 Subject: [PATCH] Test Windows. --- .github/workflows/CI.yml | 1 + test/runtests.jl | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3144fe8..58a910b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -24,6 +24,7 @@ jobs: os: - ubuntu-latest - macOS-latest + - windows-latest arch: - x64 steps: diff --git a/test/runtests.jl b/test/runtests.jl index 3ca123d..3333e29 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -270,11 +270,11 @@ SoapySDR.register_log_handler() end @testset "Modules" begin - @test SoapySDR.Modules.get_root_path() == "/workspace/destdir" + @test SoapySDR.Modules.get_root_path() == "/workspace/destdir" skip=Sys.iswindows() @test all( SoapySDR.Modules.list_search_paths() .== ["/workspace/destdir/lib/SoapySDR/modules0.8"], - ) + ) skip=Sys.iswindows() @test SoapySDR.Modules.list() == String[] end end