-
Notifications
You must be signed in to change notification settings - Fork 89
Include editable installs in all install make targets #1335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -34,7 +34,6 @@ commands: | |||
- run: | | |||
virtualenv test_python -q | |||
source test_python/bin/activate | |||
make installdeps |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No longer necessary now that make installdeps-dev
does editable install
Codecov Report
@@ Coverage Diff @@
## main #1335 +/- ##
=======================================
Coverage 99.95% 99.95%
=======================================
Files 213 213
Lines 13560 13560
=======================================
Hits 13553 13553
Misses 7 7 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Our contributing guide asks people to run
make installdeps-dev
, but that doesn't includepip install -e .
, which is important! This gave @rpeck some trouble getting the dev env working.