allankp / pytest-testrail

pytest plugin for integration with TestRail, for creating testruns and updating results
MIT License
95 stars 125 forks source link

Allow upgrades of requests dependency #26

Closed neg3ntropy closed 6 years ago

neg3ntropy commented 6 years ago

When using this plugin it's impossible to update the requests dependency to a more recent version since the dependency it's specified with ==2.11.1. In cookiecutter-qa this results in pytest refusing to load the plugin:

_pytest.vendored_packages.pluggy.PluginValidationError: Plugin 'pytest-testrail' could not be loaded: (requests 2.18.4 (/src/.tox/py36/lib/python3.6/site-packages), Requirement.parse('requests==2.11.1'))!

Please relax the requirement version with a >=2.11.1 if possible. It does not appear probable that requests will break compatibility for the current usage. Thank you