We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 790a8d7 commit 36da385Copy full SHA for 36da385
justfile
@@ -23,7 +23,7 @@ test *FILES:
23
#!/usr/bin/env bash
24
# In windows github actions, the uname command returns "MSYS_NT-10.0-20348"
25
# Search for "MSYS_NT"
26
- if [ "$(uname | tr '[:upper:] [:lower:]' | grep 'msys_nt')" ]; then
+ if [ "$(uname | tr '[:upper:]' '[:lower:]' | grep 'msys_nt')" ]; then
27
uv run --group test --all-extras pytest {{FILES}}
28
else
29
uv run --group test --all-extras pytest --doctest-modules {{FILES}}
0 commit comments