mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
"testFinished" added after "testError" and "testIngore" to fix PY-16314 and PY-16313
This commit is contained in:
18
python/testData/testRunner/env/unit/test_with_skips_and_errors.py
vendored
Normal file
18
python/testData/testRunner/env/unit/test_with_skips_and_errors.py
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
__author__ = 'Ilya.Kazakevich'
|
||||
import unittest
|
||||
import time
|
||||
|
||||
class TestMe2(unittest.TestCase):
|
||||
def test_pass(self):
|
||||
time.sleep(1)
|
||||
|
||||
def test_raise(self):
|
||||
raise ValueError
|
||||
|
||||
class TestMe(unittest.TestCase):
|
||||
def test_pass2(self):
|
||||
pass
|
||||
|
||||
@unittest.skip("SkipThis")
|
||||
def test_skip(self):
|
||||
pass
|
||||
Reference in New Issue
Block a user