fluentpython / example-code-2e

Example code for Fluent Python, 2nd edition (O'Reilly 2022)
https://amzn.to/3J48u2J
MIT License
3.17k stars 902 forks source link

Use fixture instead of yield_fixture #17

Closed kbaikov closed 3 years ago

kbaikov commented 3 years ago

The old @pytest.yield_fixture causes a deprecation warning: Use @pytest.fixture instead; they are the same. def records():

ramalho commented 3 years ago

Thank you very much for your contribution, Konstantin @kbaikov!