tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

skip.py (130B)


      1 import pytest
      2 
      3 
      4 SKIP = True
      5 
      6 
      7 @pytest.mark.parametrize("x", range(5000))
      8 def test_foo(x):
      9    if SKIP:
     10        pytest.skip("heh")