未验证 提交 4e648875 编写于 作者: A Amador Pahim

Merge branch 'clebergnu-test_loader_skip_v2'

Signed-off-by: NAmador Pahim <apahim@redhat.com>
......@@ -646,6 +646,9 @@ class RunnerSimpleTest(unittest.TestCase):
"Avocado did not return rc %d:\n%s" %
(expected_rc, result))
@unittest.skipIf(os.environ.get("AVOCADO_CHECK_FULL") != "1",
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve")
def test_runner_onehundred_fail_timing(self):
"""
We can be pretty sure that a failtest should return immediately. Let's
......
......@@ -215,6 +215,9 @@ class LoaderTestFunctional(unittest.TestCase):
def test_load_not_a_test_not_exec(self):
self._test('notatest.py', NOT_A_TEST, 'NOT_A_TEST')
@unittest.skipIf(os.environ.get("AVOCADO_CHECK_FULL") != "1",
"Skipping test that take a long time to run, are "
"resource intensive or time sensitve")
def test_runner_simple_python_like_multiple_files(self):
mylib = script.TemporaryScript(
'test2.py',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册