We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5463d10 commit 93f78f9Copy full SHA for 93f78f9
pytest_watch/command.py
@@ -62,8 +62,7 @@ def main(argv=None):
62
directories = args['<directories>']
63
if '--' in directories:
64
index = directories.index('--')
65
- pytest_args = directories[index + 1:]
66
- directories = directories[:index]
+ directories, pytest_args = directories[:index], directories[index + 1:]
67
68
# Merge config file options
69
merge_config(args, directories)
0 commit comments