Home-made fixture with tempdir - Fixtures and Mocking in Python
Keyboard shortcuts
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
Home-made fixture with tempdir
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)
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'}