Skip to content

Commit

Permalink
Fix nightly tests (#50)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
mortenpi authored Oct 31, 2022
1 parent d35f11e commit ad3c9a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
strategy:
matrix:
version:
- '1.5'
- '1.7'
- '1'
- 'nightly'
os:
Expand Down
2 changes: 1 addition & 1 deletion test/driver_autoload.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@testset "Automatic code loading for drivers" begin
empty!(DataSets.PROJECT)
pushfirst!(LOAD_PATH, abspath("drivers"))
Pkg.develop(path=joinpath(@__DIR__, "drivers", "DummyStorageBackends"))
ENV["JULIA_DATASETS_PATH"] = joinpath(@__DIR__, "DriverAutoloadData.toml")
DataSets.__init__()
@test haskey(DataSets._storage_drivers, "DummyTomlStorage")
Expand Down

0 comments on commit ad3c9a9

Please sign in to comment.