Skip to content

Commit

Permalink
Use setup.py develop for now
Browse files Browse the repository at this point in the history
Some change in `setuptools` or `pip` seems to have dropped the ability
to retain the build directory, which we need for generating coverage of
the .c files. I've spent a bit of time trying to make this work with
`pip install -e .` and can't seem to get things to work. We'll use the
deprecated command for now.
  • Loading branch information
jcrist committed Apr 23, 2023
1 parent 6f1b742 commit d9f45db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
MSGSPEC_COVERAGE: "true"
run: |
python setup.py clean --all
pip install -e .
# I know this is deprecated, but I can't find a way to keep the build
# directory around anymore on new versions of setuptools
python setup.py develop
- name: Run tests with sanitizers
env:
Expand Down

0 comments on commit d9f45db

Please sign in to comment.