Added Metadata for museo 14/02, 13/03, edito 22/03, 12/04
# 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")