File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,6 @@ using GeoFormatTypes
77using DataFrames
88using Extents
99
10- # ENV["JULIA_CONDAPKG_OFFLINE"] = true # for running locally
11- ENV [" JULIA_CONDAPKG_ENV" ] = joinpath (@__DIR__ , " .cpenv" )
12- using PythonCall
13- feather = pyimport (" pyarrow.feather" )
14-
1510mkpath (joinpath (@__DIR__ , " data/write" ))
1611
1712@testset " GeoArrow.jl" begin
@@ -49,6 +44,19 @@ mkpath(joinpath(@__DIR__, "data/write"))
4944 end
5045 end
5146 @testset " Python" begin
47+ Sys. iswindows () && return # doesn't work on Windows
48+
49+ # ENV["JULIA_CONDAPKG_OFFLINE"] = true # for running locally
50+ ENV [" JULIA_CONDAPKG_ENV" ] = joinpath (@__DIR__ , " .cpenv" )
51+ try
52+ using PythonCall
53+ catch e
54+ @error " PythonCall not available:"
55+ @error e
56+ return
57+ end
58+ feather = pyimport (" pyarrow.feather" )
59+
5260 for arrowfn in filter (endswith (" arrow" ), readdir (" data" , join= true ))
5361 @testset " $arrowfn " begin
5462 t = GeoArrow. read (arrowfn)
You can’t perform that action at this time.
0 commit comments