script/lib/tweetstream/conftest.py
author Raphael Velt <raph.velt@gmail.com>
Mon, 11 Feb 2013 17:37:03 +0100
changeset 788 5a35d808f290
parent 13 79b6e132e3d7
permissions -rw-r--r--
Added Hadrien Gardeur

# content of conftest.py

import pytest
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.getvalue("runslow"):
        pytest.skip("need --runslow option to run")