-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal pixi default environment #1322
Conversation
Only add dependencies to the default environment that are necessary to test Ribasim Python or Ribasim API. This should make it easier to keep track of which dependencies are necessary for what and also reduce solve times.
@@ -35,7 +35,7 @@ First, set up pixi as described on their getting started [page](https://prefix.d | |||
Then set up the environment by running the following commands: | |||
|
|||
```sh | |||
pixi run install | |||
pixi run --environment=dev install |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is only necessary because otherwise the editable install installs into the wrong environment.
As soon as pixi supports editable installs this will not be necessary anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps it's good to create an issue for this, with a reminder to remove this.
Do we now already use the new minimal default environment anywhere in CI, or do we use |
Ribasim Python tests use it. |
Only add dependencies to the default environment that are necessary to test Ribasim Python or Ribasim API. This should make it easier to keep track of which dependencies are necessary for what, and also reduce solve times.