mirror of https://github.com/celery/kombu.git
18 lines
693 B
Python
18 lines
693 B
Python
import pytest
|
|
def pytest_addoption(parser):
|
|
parser.addoption("-E", action="append", metavar="NAME",
|
|
help="only run tests matching the environment NAME.")
|
|
|
|
def pytest_configure(config):
|
|
# register an additional marker
|
|
config.addinivalue_line("markers",
|
|
"env(name): mark test to run only on named environment")
|
|
|
|
def pytest_runtest_setup(item):
|
|
envnames = [mark.args[0] for mark in item.iter_markers(name='env')]
|
|
if envnames:
|
|
if item.config.getoption("-E") is None or len(set(item.config.getoption("-E")) & set(envnames)) == 0:
|
|
# We skip test if does not mentioned by -E param
|
|
pytest.skip("test requires env in %r" % envnames)
|
|
|