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 1007802 commit d713e98Copy full SHA for d713e98
.github/workflows/pytest.yaml
@@ -29,13 +29,13 @@ jobs:
29
with:
30
path: ${{ env.pythonLocation }}
31
key: ${{ matrix.python_version }}-lint-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml') }}-v01
32
- - name: Install checkmate with dev requirements (not using cache)
+ - name: Install checkmate with test requirements (not using cache)
33
if: steps.cache.outputs.cache-hit != 'true'
34
run: |
35
- python -m pip install -e .[dev]
+ python -m pip install -e .[test]
36
- name: Install checkmate with no requirements (using cache)
37
if: steps.cache.outputs.cache-hit == 'true'
38
39
- python -m pip install -e .[dev] --no-deps
+ python -m pip install -e .[test] --no-deps
40
- name: Run Pytest
41
run: make test
0 commit comments