aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
blob: 68309d5a5b4d88ce95202725e6ba5e6a5ee01fc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
import os
import pytest


@pytest.yield_fixture(autouse=True)
def ensure_chdir():
    x = os.getcwd()
    yield
    os.chdir(x)