Skip to content

Commit

Permalink
Fix zero coverage in CI
Browse files Browse the repository at this point in the history
Install the project in editable mode, otherwise we run the copy of the
code in site-packages which does not match the expected source location.

Closes #289
  • Loading branch information
eltoder committed Apr 12, 2024
1 parent d706f98 commit bc0adac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install
run: |
python -m pip install --upgrade pip
pip install --upgrade '.[dev]'
pip install --upgrade -e '.[dev]'
- name: Format
run: black --check --diff green example
Expand Down

0 comments on commit bc0adac

Please sign in to comment.