From 764c9a5b6ba1a413ce073f6f3ee5bdc514542034 Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Tue, 26 Dec 2023 15:36:00 +0100 Subject: [PATCH] Update docs/design_proposals/multi_environment_proposal.md Co-authored-by: Pavel Zwerschke --- docs/design_proposals/multi_environment_proposal.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/design_proposals/multi_environment_proposal.md b/docs/design_proposals/multi_environment_proposal.md index 37158ff07..d231c4b47 100644 --- a/docs/design_proposals/multi_environment_proposal.md +++ b/docs/design_proposals/multi_environment_proposal.md @@ -320,8 +320,9 @@ pixi run test test = "pytest --md=report.md" [environments] - default = ["test", {environment = "prod"}] # implicit ["default", "test"], overrides default environment - prod = [] # implicit for ["default"] + # both default and prod will have exactly the same dependency versions when they share a dependency + default = {features = ["test"], solve-group = "prod-group"} + prod = {features = [], solve-group = "prod-group"} ``` In ci you would run the following commands: ```shell