Skip to content

Commit

Permalink
Remove editable install from pythonTests action
Browse files Browse the repository at this point in the history
This fails on python 3.6 and is a feature provided by setuptools
  • Loading branch information
lovetox committed Apr 23, 2024
1 parent 2e307be commit 5b12551
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/pythonTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,9 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Test install
run: |
python -m pip install -e .[dev]
python -m pip install .[dev]
- name: Test with pytest
run: |
pytest
- name: Test install
run: |
python -m pip install .

0 comments on commit 5b12551

Please sign in to comment.