Skip to content

Commit

Permalink
Fix test-ribasim-core by adding using Pkg; (#742)
Browse files Browse the repository at this point in the history
Otherwise you would receive an error during `pixi run test-ribasim-core`
  • Loading branch information
deltamarnix authored and visr committed Nov 13, 2023
1 parent d240a58 commit fda99d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }
Expand Down

0 comments on commit fda99d3

Please sign in to comment.