Skip to content

Commit abbc468

Browse files
committed
adjusted
1 parent 0a3287b commit abbc468

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@ jobs:
3737
- name: Get test environments
3838
id: get-envs
3939
run: |
40-
ENVS_JSON=$(uvx hatch env show --json | jq -c 'to_entries
40+
ENVS_JSON=$(NO_COLOR=1 uvx --quiet hatch env show --json | jq -c 'to_entries
4141
| map(
4242
select(.key | startswith("hatch-test"))
4343
| {
4444
name: .key,
4545
label: (if (.key | contains("pre")) then .key + " (PRE-RELEASE DEPENDENCIES)" else .key end),
46-
python: .value.python
46+
python: .value.python,
47+
test_type: (if (.key | contains("py3.13-stable")) then "coverage" else null end)
4748
}
4849
)')
4950
echo "envs=${ENVS_JSON}" | tee $GITHUB_OUTPUT

0 commit comments

Comments
 (0)