Skip to content

Instantly share code, notes, and snippets.

@hpk42
Created September 11, 2013 19:15
Show Gist options
  • Save hpk42/6528395 to your computer and use it in GitHub Desktop.
Save hpk42/6528395 to your computer and use it in GitHub Desktop.
# content of testcases/conftest.py
from os.path import abspath, dirname
import os
import pytest
@pytest.fixture(autouse=True)
def cd_to_rootdir():
os.chdir(dirname(dirname(abspath(__file__))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment