Merge with 3d32746ba213d997921c565f8b45667c150362d4
# 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")