summaryrefslogtreecommitdiff
path: root/conftest.py
blob: 49983750adecdf68a59603806cd8cc5a1d4708e9 (plain)
1
2
3
4
5
6
7
import pytest


@pytest.yield_fixture
def tmpdir_cwd(tmpdir):
    with tmpdir.as_cwd() as orig:
        yield orig