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

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