Skip to content

Commit a385242

Browse files
committed
Fix nightly tests (#50)
* Use Pkg.develop instead of LOAD_PATH * Expand CI test matrix to include 1.5, 1.7 1.5 is the lowest version we support here. (cherry picked from commit ad3c9a9)
1 parent 9d2132f commit a385242

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
strategy:
1414
matrix:
1515
version:
16+
- '1.5'
17+
- '1.7'
1618
- '1'
1719
- 'nightly'
1820
os:

test/driver_autoload.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@testset "Automatic code loading for drivers" begin
22
empty!(DataSets.PROJECT)
3-
pushfirst!(LOAD_PATH, abspath("drivers"))
3+
Pkg.develop(path=joinpath(@__DIR__, "drivers", "DummyStorageBackends"))
44
ENV["JULIA_DATASETS_PATH"] = joinpath(@__DIR__, "DriverAutoloadData.toml")
55
DataSets.__init__()
66
@test haskey(DataSets._storage_drivers, "DummyTomlStorage")

0 commit comments

Comments
 (0)