Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pytest / bench / skip.py
Size: Mime:

import pytest


SKIP = True

@pytest.mark.parametrize("x", xrange(5000))
def test_foo(x):
    if SKIP:
        pytest.skip("heh")