Created
October 15, 2020 09:40
-
-
Save dl6nm/b3fb6e785c3b42af34ec06793214d53a to your computer and use it in GitHub Desktop.
pytest helper class with static method (function) in conftest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytest | |
class Helpers: | |
@staticmethod | |
def help_me(): | |
return "no" | |
@pytest.fixture | |
def helpers(): | |
return Helpers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_with_help(helpers): | |
helpers.help_me() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment