standard-project-files python pytest Pytest fixture templates Some templates/example of pytest fixtures dummy_hello_str() dummy_fixtures.py1 2 3 4 5 6 7from pytest import fixture @fixture def dummy_hello_str() -> str: """A dummy str fixture for pytests.""" return "hello, world"