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 0f5319c commit 7516951Copy full SHA for 7516951
.github/workflows/test.yml
@@ -30,14 +30,13 @@ jobs:
30
with:
31
python-version: ${{ matrix.python-version }}
32
33
+ - name: Install project & dependencies
34
+ shell: bash
35
+ run: pip install .[dev]
36
+
37
- name: Test
38
shell: bash
- run: |
- set -uexo pipefail
- python -m venv venv
- source venv/bin/activate
39
- pip install .[dev]
40
- pytest ./test
+ run: pytest ./test
41
42
test-windows:
43
name: Test Windows
@@ -57,8 +56,10 @@ jobs:
57
56
58
59
60
+ shell: powershell
61
+ run: pip install '.[dev]'
62
63
64
shell: powershell
- pip install '.[dev]'
65
0 commit comments