Skip to content

Commit d713e98

Browse files
author
Nabil Fayak
committed
updated pytest workflow
1 parent 1007802 commit d713e98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pytest.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
with:
3030
path: ${{ env.pythonLocation }}
3131
key: ${{ matrix.python_version }}-lint-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml') }}-v01
32-
- name: Install checkmate with dev requirements (not using cache)
32+
- name: Install checkmate with test requirements (not using cache)
3333
if: steps.cache.outputs.cache-hit != 'true'
3434
run: |
35-
python -m pip install -e .[dev]
35+
python -m pip install -e .[test]
3636
- name: Install checkmate with no requirements (using cache)
3737
if: steps.cache.outputs.cache-hit == 'true'
3838
run: |
39-
python -m pip install -e .[dev] --no-deps
39+
python -m pip install -e .[test] --no-deps
4040
- name: Run Pytest
4141
run: make test

0 commit comments

Comments
 (0)