Merge with 3af437be7931bf6a5831f253db834827875c0182
# content of conftest.pyimportpytestdefpytest_addoption(parser):parser.addoption("--runslow",action="store_true",help="run slow tests")defpytest_runtest_setup(item):if'slow'initem.keywordsandnotitem.config.getvalue("runslow"):pytest.skip("need --runslow option to run")