Skip to content

Commit 8831e8e

Browse files
authored
minor fix to tests, update patch version (#35)
Minor fix to tests to gather load path correctly. Updating patch version for tagging.
1 parent a0bb4b8 commit 8831e8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ keywords = ["Swagger", "OpenAPI", "REST"]
44
license = "MIT"
55
desc = "OpenAPI server and client helper for Julia"
66
authors = ["Tanmay Mohapatra <[email protected]>", "JuliaHub"]
7-
version = "0.1.9"
7+
version = "0.1.10"
88

99
[deps]
1010
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

test/testutils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function run_server(script, flags=``)
1313
srvrcmd = `$(joinpath(Sys.BINDIR, "julia")) $use_pkgimages $startup_flag $cov_flag $inline_flag $script $flags`
1414
srvrcmd = addenv(srvrcmd,
1515
"JULIA_DEPOT_PATH"=>join(DEPOT_PATH, Sys.iswindows() ? ';' : ':'),
16-
"JULIA_LOAD_PATH"=>ENV["JULIA_LOAD_PATH"],
16+
"JULIA_LOAD_PATH"=>join(LOAD_PATH, Sys.iswindows() ? ';' : ':'),
1717
)
1818
iob = IOBuffer()
1919
pipelined_cmd = pipeline(srvrcmd, stdout=iob, stderr=iob)

0 commit comments

Comments
 (0)