You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import unittest
class NumbersTest(unittest.TestCase):
def test_even(self):
"""Test that numbers between 0 and 5 are all even.
"""
for i in range(0, 6):
with self.subTest(i=i):
self.assertEqual(i % 2, 0)
We look for test name in subest.
Since id is added between test and description, we can't parse it using substring.
So, we use bare test id (without of description)
We look for test name in subest.
Since id is added between test and description, we can't parse it using substring.
So, we use bare test id (without of description)
Fixed on teamcity-runners side. This commit updates em to the latest version and adds test.
See JetBrains/teamcity-messages#221
GitOrigin-RevId: 2538e88844be6b0f337983e2629985c872ac4f71
SergeyZh
pushed a commit
to JetBrains/intellij-community
that referenced
this issue
Nov 12, 2019
Fixed on teamcity-runners side. This commit updates em to the latest version and adds test.
See JetBrains/teamcity-messages#221
(cherry picked from commit 2538e88844be6b0f337983e2629985c872ac4f71)
GitOrigin-RevId: 734f58446c2064dc4da48f3abcf92049c80d746a
https://youtrack.jetbrains.com/issue/PY-29614
The text was updated successfully, but these errors were encountered: