We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d266d9 commit 0d5add7Copy full SHA for 0d5add7
.github/workflows/ci.yml
@@ -81,6 +81,10 @@ jobs:
81
manifest-path: "envs/pixi.toml"
82
policy-file: "policy.yaml"
83
expected-failure: "false"
84
+ - envs: "pixi:failing-env"
85
+ manifest-path: "envs/pixi.toml"
86
+ policy-file: "policy.yaml"
87
+ expected-failure: "true"
88
89
steps:
90
- name: clone the repository
envs/pixi.toml
@@ -1,5 +1,4 @@
1
[dependencies]
2
-numpy = "1.24"
3
pandas = "2.1"
4
packaging = "23.1"
5
@@ -9,6 +8,11 @@ python = "3.10"
9
8
[feature.py311.dependencies]
10
python = "3.11"
11
+[feature.failing.dependencies]
12
+numpy = "2.1"
13
+
14
15
[environments]
16
env1 = { features = ["py310"] }
17
env2 = ["py311"]
18
+failing-env = { features = ["failing"] }
0 commit comments