Home-made fixture with tempdir
examples/fixture_inject_tmpdir/test_app.py
import yaml def test_some_data(config): assert True print(config) with open(config) as fh: conf = yaml.load(fh, Loader=yaml.FullLoader) print(conf)
examples/fixture_inject_tmpdir/conftest.py
import pytest import os import yaml @pytest.fixture() def config(tmpdir): print(tmpdir.__class__) # LocalPath tdir = str(tmpdir) print(tdir) config_data = { 'name' : 'Foo Bar', 'email' : 'foo@bar.com', } config_file = os.path.join(tdir, 'test_db.yaml') with open(config_file, 'w') as yaml_file: yaml.dump(config_data, yaml_file, default_flow_style=False) return config_file
$ pytest -qs {'name': 'Foo Bar', 'email': 'foo@bar.com'}