Created
March 22, 2017 14:33
-
-
Save apahim/ccecbca0b6b9284c3663e328a5f58870 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import avocado | |
from external_lib import is_env_ok | |
class MyTest(avocado.Test): | |
@avocado.skipIf(is_env_ok()) | |
def setUp(self): | |
pass | |
def test1(self): | |
pass | |
def test2(self): | |
pass | |
def test3(self): | |
pass | |
... | |
def test1000(self): | |
pass | |
def tearDown(self): | |
pass |
adereis
commented
Mar 22, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment