Skip to content

Instantly share code, notes, and snippets.

@CMCDragonkai
Created February 12, 2019 05:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CMCDragonkai/7987dc42ec780051c34120fe1c6347a7 to your computer and use it in GitHub Desktop.
Save CMCDragonkai/7987dc42ec780051c34120fe1c6347a7 to your computer and use it in GitHub Desktop.
Pytest Fixture for Project Root #python
import pytest
from pathlib import Path
@pytest.fixture(scope='session')
def project_root(pytestconfig):
return Path(pytestconfig.rootdir)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment