Skip to content

Commit

Permalink
Don't use setup.py develop anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
thatbudakguy committed Apr 18, 2024
1 parent d19db75 commit 240f4b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- run: pip install -r ci-requirements.txt
- run: python setup.py develop
- run: python -m pip install --editable .
- run: python -m unittest

coverage:
Expand All @@ -51,6 +51,6 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- run: pip install -r ci-requirements.txt
- run: python setup.py develop
- run: python -m pip install --editable .
- run: coverage run -m unittest
- uses: codecov/codecov-action@v1

0 comments on commit 240f4b0

Please sign in to comment.