We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f33aae8 commit 1a635dcCopy full SHA for 1a635dc
.github/workflows/main.yml
@@ -21,7 +21,7 @@ jobs:
21
python-version: ${{ matrix.python-version }}
22
23
- name: Run tests
24
- run: uv run --with python-dateutil --with six test.py
+ run: scripts/test
25
26
# https://github.com/marketplace/actions/alls-green#why used for branch protection checks
27
check:
scripts/test
@@ -0,0 +1,5 @@
1
+#!/bin/sh -e
2
+
3
+set -x # print executed commands to the terminal
4
5
+uvx --with python-dateutil --with six pytest "${@}"
test.py
0 commit comments