20 lines
362 B
Python
20 lines
362 B
Python
import pytest
|
|
|
|
|
|
class Object:
|
|
pass
|
|
|
|
|
|
@pytest.fixture
|
|
def object():
|
|
return Object()
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption("--runslow", action="store_true", help="run slow tests")
|
|
|
|
|
|
def pytest_runtest_setup(item):
|
|
if "slow" in item.keywords and not item.config.getoption("--runslow"):
|
|
pytest.skip("need --runslow option to run")
|