-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
How to experiment with local changes #2786
Comments
I'm still trying to understand everything as well, but what I usually do is just
To just install the package into my local virtualenv. Maybe there are hidden gotchas but it usually works for me. |
@jcoatgoogle, it looks like you have multiple versions of the library installed and the wrong one is getting picked up. The |
Merging master and deleting all the .tox's seems to have worked. Thank you both. Will reopen if I run into any more issues! <3 |
Glad to hear! If you run |
@jcoatgoogle Thanks a lot for reporting and for slogging through to the finish line. Sorry you ran into this, we're still smoothing out sharp corners after we switching from |
Hm, this started failing again. I tried deleting all the .tox directories, but the issue I'm seeing is that I have a change to datastore/ which depends on a change in core/, but I'm not able to see the change in core/. It's weird because it was working...alas, I rebased in master, but I'm curious if there's a way to properly deal with that? I've checked the site-packages and the change is in fact not reflected in the new file... not sure if something changed, or if I somehow got lucky earlier?! To unblock myself I can just manually copy the files into site-packages... is this sort of thing supported? Thanks again |
I tried to reopen this but it won't let me :S |
oh wait now it will. I think github was having issues... |
@jcoatgoogle Resolving #2785 should cover this, no? Can we close this and just move over there? |
Happy to move this conversation there |
My goal is simple: be able to make local changes, and then use veneer with those local changes. Per the contributor documents, I'm trying to use tox, but not really succeeding.
If I do
tox -e py27 --recreate --notest
from the root directory, then it doesn't pick up any changes.If I do
tox -e py27 --recreate --notest
from datastore/ (this is the code I am changing), then my changes are picked up, but they don't workI would appreciate any guidance on how to make this work!
The text was updated successfully, but these errors were encountered: