Skip to content

Commit 912c5d9

Browse files
committed
Use pytest instead of hatch
1 parent 007191b commit 912c5d9

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,8 @@ jobs:
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434

35-
- name: Install Hatch
36-
run: pip install --upgrade hatch
37-
38-
- name: Run static analysis
39-
run: hatch fmt --linter
35+
- name: Install Dependencies
36+
run: pip install --upgrade pytest pytest-cov
4037

4138
- name: Run tests
42-
run: hatch test --python ${{ matrix.python-version }} --cover --randomize --parallel --retries 2 --retry-delay 1
39+
run: pytest --cov --cov-report=term-missing --tb=short

0 commit comments

Comments
 (0)