jamielennox / requests-mock

Mocked responses for the requests library
https://requests-mock.readthedocs.io
Apache License 2.0
450 stars 71 forks source link

Fixtures library missing in requirements.txt #217

Closed jhurej closed 1 year ago

jhurej commented 1 year ago

Hi,

It looks like fixtures library is missing in requirements.txt. It cause an error in my code. Adding fixtures library next to requests_mock in my repo's requirements fixed the issue but it's just a workaround. Could you please add it to your requirements.txt?

Screenshot 2022-11-29 at 01 41 48
jamielennox commented 1 year ago

It's there as an optional dependency, so if you add

requests-mock[fixture]

to your dependency it'll bring those additional dependencies.

https://requests-mock.readthedocs.io/en/stable/fixture.html

jhurej commented 1 year ago

Got it, thank you