You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
680 B
22 lines
680 B
# coding=utf-8
|
|
import re
|
|
|
|
import nose
|
|
import sys
|
|
|
|
from _jb_runner_tools import jb_start_tests, jb_patch_separator, jb_doc_args, \
|
|
JB_DISABLE_BUFFERING, jb_finish_tests
|
|
from teamcity.nose_report import TeamcityReport
|
|
|
|
if __name__ == '__main__':
|
|
path, targets, additional_args = jb_start_tests()
|
|
sys.argv += [path] if path else jb_patch_separator(targets, fs_glue="/", python_glue=".", fs_to_python_glue=".py:")
|
|
sys.argv += additional_args
|
|
if JB_DISABLE_BUFFERING and "-s" not in sys.argv:
|
|
sys.argv += ["-s"]
|
|
jb_doc_args("Nosetest", sys.argv)
|
|
try:
|
|
sys.exit(nose.main(addplugins=[TeamcityReport()]))
|
|
finally:
|
|
jb_finish_tests()
|