Skip to content

Commit

Permalink
Changing test URI to the defined ENV variable
Browse files Browse the repository at this point in the history
  • Loading branch information
pebeto committed Nov 18, 2023
1 parent 5aebc7c commit 11f3fe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/base.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@testset verbose = true "base" begin
logger = MLJFlow.Logger("http://localhost:5000";
logger = MLJFlow.Logger(ENV["MLFLOW_URI"];
experiment_name="MLJFlow tests",
artifact_location="/tmp/mlj-test")

Expand Down
2 changes: 1 addition & 1 deletion test/types.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@testset "types" begin
logger = MLJFlow.Logger("http://localhost:5000")
logger = MLJFlow.Logger(ENV["MLFLOW_URI"])

@test typeof(logger) == MLJFlow.Logger
@test typeof(logger.service) == MLFlow
Expand Down

0 comments on commit 11f3fe0

Please sign in to comment.