File: test_teamcity.py

package info (click to toggle)
python-flexmock 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 460 kB
  • sloc: python: 3,802; makefile: 17; sh: 14
file content (17 lines) | stat: -rw-r--r-- 436 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Test TeamCity (PyCharm) integration."""

# pylint: disable=missing-docstring
import unittest

from teamcity.unittestpy import TeamcityTestRunner

from tests.features import FlexmockTestCase


class TestTeamCityTeardown(FlexmockTestCase, unittest.TestCase):
    """Test flexmock teardown works with TeamCity test runner (PyCharm)."""


if __name__ == "__main__":
    runner = TeamcityTestRunner()
    unittest.main(testRunner=runner)