kvas-it / pytest-console-scripts

Pytest plugin for testing console scripts
MIT License
78 stars 14 forks source link

now requires py.test >= 4, I believe? #26

Closed ctb closed 5 years ago

ctb commented 5 years ago

I got this error trying out pytest-console-scripts with pytest-3.1 --

AttributeError: 'Metafunc' object has no attribute 'definition'

which googles to this issue https://github.com/s3ql/s3ql/issues/86. Upgrading to the latest pytest (5.1.2) fixed it.

However, the requirements here, https://pypi.org/project/pytest-console-scripts/, say that pytest-console-scripts needs pytest 3 or above.

kvas-it commented 5 years ago

Thanks for catching this, Titus. I can reproduce your failure with pytest-3.1.0. I will update setup.py and the README and release a new version.

ctb commented 5 years ago

excellent, thank you!