We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a3287b commit abbc468Copy full SHA for abbc468
.github/workflows/test.yaml
@@ -37,13 +37,14 @@ jobs:
37
- name: Get test environments
38
id: get-envs
39
run: |
40
- ENVS_JSON=$(uvx hatch env show --json | jq -c 'to_entries
+ ENVS_JSON=$(NO_COLOR=1 uvx --quiet hatch env show --json | jq -c 'to_entries
41
| map(
42
select(.key | startswith("hatch-test"))
43
| {
44
name: .key,
45
label: (if (.key | contains("pre")) then .key + " (PRE-RELEASE DEPENDENCIES)" else .key end),
46
- python: .value.python
+ python: .value.python,
47
+ test_type: (if (.key | contains("py3.13-stable")) then "coverage" else null end)
48
}
49
)')
50
echo "envs=${ENVS_JSON}" | tee $GITHUB_OUTPUT
0 commit comments