Skip to content

Commit a82f853

Browse files
committed
Fix GitHub Actions workflow: add fetch-depth: 0 for hatch-vcs and use simpler test command
1 parent e3fa2db commit a82f853

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/python-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19+
with:
20+
fetch-depth: 0
1921
- name: Set up Python ${{ matrix.python-version }}
2022
uses: actions/setup-python@v4
2123
with:
@@ -26,4 +28,4 @@ jobs:
2628
pip install hatch
2729
- name: Run tests
2830
run: |
29-
hatch run cov
31+
hatch run test

0 commit comments

Comments
 (0)