-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Using positional arg/dir outside of PWD does not load options from explicit plugin #1594
Comments
Regarding the testmon issue I've noticed that it also happens with Please note that using the
The custom option is added in
def pytest_addoption(parser):
parser.addoption('--my-custom-option', action='store', default=None, help='…') |
Resolved in #1621 |
py.test -p project.lock8.plugin /tmp project --custom-option
fails withThe option is defined through
pytest_addoption
andparser.addoption
therein.Using an additional directory outside of $PWD seems to cause this.
I have tried using
--confcutdir=$PWD
, but it still did not work.pytest 2.9.3.dev0 (current master).
The text was updated successfully, but these errors were encountered: