Repository URL to install this package:
Version:
0.1.16-1 ▾
|
import pathlib
import sys
import tempfile
import warnings
import pytest
@pytest.fixture(scope="module")
def here():
file_path = pathlib.Path(__file__)
return file_path.parent
@pytest.fixture(scope="module")
def examples_dir(here):
return here / "../../docs/examples"
_ARCHIVE_FILENAMES = [
'mypackage-0.1.tar',
'mypackage-0.1.tar.gz',
'mypackage-0.1.tar.bz2',
'mypackage-0.1.zip',
]
@pytest.fixture(scope="module", params=_ARCHIVE_FILENAMES)
def archive(examples_dir, request):
yield examples_dir / request.param
@pytest.fixture(scope="module")
def test_egg(examples_dir):
yield examples_dir / 'mypackage-0.1-py2.6.egg'
@pytest.fixture(scope="module")
def test_wheel(examples_dir):
yield examples_dir / 'mypackage-0.1-cp26-none-linux_x86_64.whl'
@pytest.fixture
def temp_dir():
with tempfile.TemporaryDirectory() as tmpdir:
return pathlib.Path(tmpdir)
@pytest.fixture
def sys_path():
oldpath = sys.path[:]
try:
yield sys.path
finally:
sys.path[:] = oldpath
@pytest.fixture
def sys_modules():
before = set(sys.modules)
try:
yield None
finally:
after = set(sys.modules)
for added in after - before:
sys.modules.pop(added, None)
@pytest.fixture
def dodgy(sys_path, sys_modules, here):
dodgy = here / 'dodgy'
sys_path.append(str(dodgy))
with warnings.catch_warnings(record=True):
import namespaced.dodgy
return namespaced.dodgy
@pytest.fixture
def wonky(sys_path, sys_modules, here):
wonky = here / 'wonky'
sys_path.append(str(wonky))
with warnings.catch_warnings(record=True):
import namespaced.wonky
return namespaced.wonky
@pytest.fixture
def manky(sys_path, sys_modules, here):
manky = here / 'manky'
sys_path.append(str(manky))
with warnings.catch_warnings(record=True):
import namespaced.manky
return namespaced.manky