From 7f0b0a207800deb60494d0309ef51b123893fcc7 Mon Sep 17 00:00:00 2001 From: Marnix Kraus Date: Mon, 6 Nov 2023 17:24:47 +0100 Subject: [PATCH] Fix test-ribasim-core by adding `using Pkg;` --- pixi.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixi.toml b/pixi.toml index ec31fcf59..4ac7b151b 100644 --- a/pixi.toml +++ b/pixi.toml @@ -73,7 +73,7 @@ build = { depends_on = ["build-ribasim-cli", "build-libribasim"] } test-ribasim-python = "pytest --numprocesses=auto python/ribasim/tests" test-ribasim-api = "pytest --basetemp=python/ribasim_api/tests/temp --junitxml=report.xml python/ribasim_api/tests" test-ribasim-cli = "pytest --numprocesses=auto --basetemp=build/ribasim_cli/tests/temp --junitxml=report.xml build/ribasim_cli/tests" -test-ribasim-core = { cmd = "julia --project=core --eval 'Pkg.test()'", depends_on = [ +test-ribasim-core = { cmd = "julia --project=core --eval 'using Pkg; Pkg.test()'", depends_on = [ "instantiate-julia-core", "generate-testmodels", ] }