We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5382d9 commit 0e5a321Copy full SHA for 0e5a321
.github/workflows/test.yml
@@ -32,8 +32,15 @@ jobs:
32
with:
33
python-version: ${{ matrix.python-version }}
34
35
- - name: Install Dependencies
36
- run: pip install --upgrade . pytest pytest-cov
+ - name: Install Hatch
+ run: pip install --upgrade hatch
37
+
38
+ - name: Activate environment
39
+ run: hatch shell
40
41
+ - name: Run static analysis
42
+ run: hatch fmt --check
43
44
- name: Run tests
- run: pytest --cov --cov-report=term-missing --tb=short
45
+ run: hatch test --python ${{ matrix.python-version }} --cover --randomize --parallel --retries 2 --retry-delay 1
46
0 commit comments