I was working on https://github.com/pytest-dev/pytest/issues/595 and ran into this. When running: ``` bash $ pytest --junit-xml=. ``` I receive a `IsADirectoryError: [Errno 21]` error. What I need to pass to make this work is: ``` bash $ pytest --junit-xml=somefile ``` Could `--junit-xml=.` default to create some report file? Otherwise, should the help text be altered to highlight that it must be a file name?