本文整理汇总了Python中teamcity.messages.TeamcityServiceMessages类的典型用法代码示例。如果您正苦于以下问题:Python TeamcityServiceMessages类的具体用法?Python TeamcityServiceMessages怎么用?Python TeamcityServiceMessages使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TeamcityServiceMessages类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_build_statistic_lines_uncovered
def test_build_statistic_lines_uncovered():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.buildStatisticLinesUncovered(5)
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[buildStatisticValue timestamp='2000-11-02T10:23:01.556' key='CodeCoverageAbsLUncovered' value='5']
""").strip().encode('utf-8')
示例2: test_import_data
def test_import_data():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.importData('junit', '/path/to/junit.xml')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[importData timestamp='2000-11-02T10:23:01.556' path='/path/to/junit.xml' type='junit']
""").strip().encode('utf-8')
示例3: test_set_parameter
def test_set_parameter():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.setParameter(name='env', value='mt3')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[setParameter timestamp='2000-11-02T10:23:01.556' name='env' value='mt3']
""").strip().encode('utf-8')
示例4: test_block_closed
def test_block_closed():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.blockClosed('dummyMessage')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[blockClosed timestamp='2000-11-02T10:23:01.556' name='dummyMessage']
""").strip().encode('utf-8')
示例5: test_build_problem
def test_build_problem():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.buildProblem(description='something is wrong', identity='me')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[buildProblem timestamp='2000-11-02T10:23:01.556' description='something is wrong' identity='me']
""").strip().encode('utf-8')
示例6: test_build_status
def test_build_status():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.buildStatus(status='failure', text='compile error')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[buildStatus timestamp='2000-11-02T10:23:01.556' status='failure' text='compile error']
""").strip().encode('utf-8')
示例7: test_test_stderr
def test_test_stderr():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.testStdErr(testName='only a test', out='out')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[testStdErr timestamp='2000-11-02T10:23:01.556' name='only a test' out='out']
""").strip().encode('utf-8')
示例8: test_test_failed
def test_test_failed():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.testFailed(testName='only a test', message='some message', details='details')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[testFailed timestamp='2000-11-02T10:23:01.556' details='details' message='some message' name='only a test']
""").strip().encode('utf-8')
示例9: test_test_suite_finished
def test_test_suite_finished():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.testSuiteFinished('suite emotion')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[testSuiteFinished timestamp='2000-11-02T10:23:01.556' name='suite emotion']
""").strip().encode('utf-8')
示例10: test_compilation_finished
def test_compilation_finished():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.compilationFinished('gcc')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[compilationFinished timestamp='2000-11-02T10:23:01.556' compiler='gcc']
""").strip().encode('utf-8')
示例11: test_build_statistic_value
def test_build_statistic_value():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.buildStatisticValue('CustomKey', '1234')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[buildStatisticValue timestamp='2000-11-02T10:23:01.556' key='CustomKey' value='1234']
""").strip().encode('utf-8')
示例12: test_disable_service_messages
def test_disable_service_messages():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.disableServiceMessages()
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[disableServiceMessages timestamp='2000-11-02T10:23:01.556']
""").strip().encode('utf-8')
示例13: test_publish_artifacts
def test_publish_artifacts():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.publishArtifacts('/path/to/file')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[publishArtifacts '/path/to/file']
""").strip().encode('utf-8')
示例14: test_progress_message
def test_progress_message():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.progressMessage('doing stuff')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[progressMessage 'doing stuff']
""").strip().encode('utf-8')
示例15: test_custom_message
def test_custom_message():
stream = StreamStub()
messages = TeamcityServiceMessages(output=stream, now=lambda: fixed_date)
messages.customMessage('blah blah blah', status='all good')
assert stream.observed_output.strip() == textwrap.dedent("""\
##teamcity[message timestamp='2000-11-02T10:23:01.556' errorDetails='' status='all good' text='blah blah blah']
""").strip().encode('utf-8')