Project

Profile

Help

Issue #4245

Updated by daviddavis over 5 years ago

Bruno pointed out that in Travis we install packages like pulpcore and pulpcore-plugin using <code>pip install -e ...</code>. This symlinks the package into place and doesn't actually build it. 

 Consider the case where we have a file that we want to ship with the package (e.g. "blah"). It might not be getting properly included in the built package but using <code>pip install -e ...</code> would mask this problem.

Back