Skip to content

Commit

Permalink
config: #1199, use pip instead of poetry for dev Python
Browse files Browse the repository at this point in the history
  • Loading branch information
lisphilar committed Sep 17, 2022
1 parent 8d77fb5 commit 8a9b04d
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/test_latest-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true

- name: installation of dependencies
run: poetry install --no-root --with test,docs

- name: run quality check with "make test" command
run: make test
- name: pip install and test
run: |
pip install pip --upgrade
pip install .
pip install pytest pytest-cov pytest-xdist
pytest -v --maxfail=1 tests -n

0 comments on commit 8a9b04d

Please sign in to comment.