You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My project is called feed2exec and I used the --root argument to keep changes to .tox and egg files from being picked up, otherwise it would constantly rerun because tox would trigger itself...
... except it still triggers itself because tox touches the feed2exec/_version.py file on build. I can't figure out a way to use watchman in this use case...
But that's really kind of nasty, and it doesn't show the actual output of the commands. I need to tail this arbitrary file in /tmp/anarcat-state/log to get any idea of what's going on. And worse, all the colors are gone from there...
So it would be great (and so much simpler) to have watchman-make support more complicated patterns... It looks like the patterns_to_terms function is where the action happens.
Note that I noticed that I could make that file "hidden" (prepend path name with a dot), but those files are notoriously hard to import in Python, so I'd rather avoid that.
Thanks!
The text was updated successfully, but these errors were encountered:
Here I am trying to use
watchman-maketo run tests on file changes:My project is called
feed2execand I used the--rootargument to keep changes to.toxand egg files from being picked up, otherwise it would constantly rerun because tox would trigger itself...... except it still triggers itself because tox touches the
feed2exec/_version.pyfile on build. I can't figure out a way to use watchman in this use case...I did manage to use watchman this way:
But that's really kind of nasty, and it doesn't show the actual output of the commands. I need to tail this arbitrary file in
/tmp/anarcat-state/logto get any idea of what's going on. And worse, all the colors are gone from there...So it would be great (and so much simpler) to have
watchman-makesupport more complicated patterns... It looks like thepatterns_to_termsfunction is where the action happens.Note that I noticed that I could make that file "hidden" (prepend path name with a dot), but those files are notoriously hard to import in Python, so I'd rather avoid that.
Thanks!
The text was updated successfully, but these errors were encountered: