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
where src/lib is a symlink to env/lib/python2.7/site-packages/.
When I run tests with cd src; ../env/bin/nosetests --exclude-dir=lib --with-gae, all the tests in env/lib/python2.7/site-packages/ get run. There is no error message as happens when I provide a non-existent directory to exclude-dir. Clearly, the path is being found, but is not actually being excluded.
The text was updated successfully, but these errors were encountered:
The question is whether this is due to a feature (excluding real path will always exclude any symlinks to it too) or a limitation; I'm inclined to believe the former, which is why I've submitted PR #10 which suggest to check for both real and symlink paths in excluded dirs.
In my GAE project, I have a directory structure like
where
src/lib
is a symlink toenv/lib/python2.7/site-packages/
.When I run tests with
cd src; ../env/bin/nosetests --exclude-dir=lib --with-gae
, all the tests inenv/lib/python2.7/site-packages/
get run. There is no error message as happens when I provide a non-existent directory to exclude-dir. Clearly, the path is being found, but is not actually being excluded.The text was updated successfully, but these errors were encountered: