젠킨스에서 파이썬 단위 테스트?


135

Jenkins가 파이썬 단위 테스트 사례를 어떻게 실행하도록합니까? 내장 unittest패키지 에서 JUnit 스타일 XML 출력이 가능 합니까?


1
모든 대답은 명령 줄에서 테스트 사례를 시작한다고 가정합니다. 그러나 프로그래밍 방식으로 테스트를 실행하려면 다음을 시도하십시오.import nose ; nose.runmodule() # aka nose.run(defaultTest=__name__)
MarkHu

1
간단한 'py.test --junitxml results.xml test.py'제안은 가장 좋은 질문에 대한 답변입니다. py.test를 설치하려면 'yum install pytest'. 그런 다음 모든 unittest python 스크립트를 실행하고 jUnit xml 결과를 얻을 수 있습니다.
gaoithe

1
@gaoithe 젠킨스 부분에 대답하지만 내장 unittest 모듈을 사용해야하는 요구 사항을 충족시키지 못합니다. 그 프로젝트에서는 주어진 요구 사항이었습니다.
erikbwork

@ erikb85 "unittest python script 실행"이라고 말하면 unittest 모듈을 사용하는 스크립트를 의미합니다.
gaoithe

답변:


173

샘플 테스트 :

tests.py :

# tests.py

import random
try:
    import unittest2 as unittest
except ImportError:
    import unittest

class SimpleTest(unittest.TestCase):
    @unittest.skip("demonstrating skipping")
    def test_skipped(self):
        self.fail("shouldn't happen")

    def test_pass(self):
        self.assertEqual(10, 7 + 3)

    def test_fail(self):
        self.assertEqual(11, 7 + 3)

pytest를 가진 JUnit

다음을 사용하여 테스트를 실행하십시오.

py.test --junitxml results.xml tests.py

results.xml :

<?xml version="1.0" encoding="utf-8"?>
<testsuite errors="0" failures="1" name="pytest" skips="1" tests="2" time="0.097">
    <testcase classname="tests.SimpleTest" name="test_fail" time="0.000301837921143">
        <failure message="test failure">self = &lt;tests.SimpleTest testMethod=test_fail&gt;

    def test_fail(self):
&gt;       self.assertEqual(11, 7 + 3)
E       AssertionError: 11 != 10

tests.py:16: AssertionError</failure>
    </testcase>
    <testcase classname="tests.SimpleTest" name="test_pass" time="0.000109910964966"/>
    <testcase classname="tests.SimpleTest" name="test_skipped" time="0.000164031982422">
        <skipped message="demonstrating skipping" type="pytest.skip">/home/damien/test-env/lib/python2.6/site-packages/_pytest/unittest.py:119: Skipped: demonstrating skipping</skipped>
    </testcase>
</testsuite>

코를 가진 JUnit

다음을 사용하여 테스트를 실행하십시오.

nosetests --with-xunit

nosetests.xml :

<?xml version="1.0" encoding="UTF-8"?>
<testsuite name="nosetests" tests="3" errors="0" failures="1" skip="1">
    <testcase classname="tests.SimpleTest" name="test_fail" time="0.000">
        <failure type="exceptions.AssertionError" message="11 != 10">
            <![CDATA[Traceback (most recent call last):
File "/opt/python-2.6.1/lib/python2.6/site-packages/unittest2-0.5.1-py2.6.egg/unittest2/case.py", line 340, in run
testMethod()
File "/home/damien/tests.py", line 16, in test_fail
self.assertEqual(11, 7 + 3)
File "/opt/python-2.6.1/lib/python2.6/site-packages/unittest2-0.5.1-py2.6.egg/unittest2/case.py", line 521, in assertEqual
assertion_func(first, second, msg=msg)
File "/opt/python-2.6.1/lib/python2.6/site-packages/unittest2-0.5.1-py2.6.egg/unittest2/case.py", line 514, in _baseAssertEqual
raise self.failureException(msg)
AssertionError: 11 != 10
]]>
        </failure>
    </testcase>
    <testcase classname="tests.SimpleTest" name="test_pass" time="0.000"></testcase>
    <testcase classname="tests.SimpleTest" name="test_skipped" time="0.000">
        <skipped type="nose.plugins.skip.SkipTest" message="demonstrating skipping">
            <![CDATA[SkipTest: demonstrating skipping
]]>
        </skipped>
    </testcase>
</testsuite>

코를 가진 JUnit2

nose2.plugins.junitxml플러그인 을 사용해야합니다 . nose2평상시처럼 구성 파일을 사용하거나 --plugin명령 줄 옵션을 사용하여 구성 할 수 있습니다 .

다음을 사용하여 테스트를 실행하십시오.

nose2 --plugin nose2.plugins.junitxml --junit-xml tests

nose2-junit.xml :

<testsuite errors="0" failures="1" name="nose2-junit" skips="1" tests="3" time="0.001">
  <testcase classname="tests.SimpleTest" name="test_fail" time="0.000126">
    <failure message="test failure">Traceback (most recent call last):
  File "/Users/damien/Work/test2/tests.py", line 18, in test_fail
    self.assertEqual(11, 7 + 3)
AssertionError: 11 != 10
</failure>
  </testcase>
  <testcase classname="tests.SimpleTest" name="test_pass" time="0.000095" />
  <testcase classname="tests.SimpleTest" name="test_skipped" time="0.000058">
    <skipped />
  </testcase>
</testsuite>

unittest-xml-reporting이있는 JUnit

다음에 추가 tests.py

if __name__ == '__main__':
    import xmlrunner
    unittest.main(testRunner=xmlrunner.XMLTestRunner(output='test-reports'))

다음을 사용하여 테스트를 실행하십시오.

python tests.py

test-reports / TEST-SimpleTest-20131001140629.xml :

<?xml version="1.0" ?>
<testsuite errors="1" failures="0" name="SimpleTest-20131001140629" tests="3" time="0.000">
    <testcase classname="SimpleTest" name="test_pass" time="0.000"/>
    <testcase classname="SimpleTest" name="test_fail" time="0.000">
        <error message="11 != 10" type="AssertionError">
<![CDATA[Traceback (most recent call last):
  File "tests.py", line 16, in test_fail
    self.assertEqual(11, 7 + 3)
AssertionError: 11 != 10
]]>     </error>
    </testcase>
    <testcase classname="SimpleTest" name="test_skipped" time="0.000">
        <skipped message="demonstrating skipping" type="skip"/>
    </testcase>
    <system-out>
<![CDATA[]]>    </system-out>
    <system-err>
<![CDATA[]]>    </system-err>
</testsuite>

4
간단한 'py.test --junitxml results.xml test.py'제안의 경우 +1입니다. py.test를 설치하려면 'yum install pytest'. 그런 다음 unittest python 스크립트를 실행하고 jUnit xml 결과를 얻을 수 있습니다.
gaoithe

1
unittest-xml-reporting 을 사용 하고 Test Discovery 기능 을 활용하려면 다음을 입력하십시오 unittest.main(module=None, testRunner=xmlrunner.XMLTestRunner(output='test-reports')).
Rosberg Linhares

@RosbergLinhares 왜 module=NoneTest Discovery를 사용해야합니까? 대답에 설명 된대로 정확하게 작동합니다 unittest.main(testRunner=xmlrunner.XMLTestRunner(output='test-reports')).
acm

@RosbergLinhares는 테스트 검색 중에 모듈을 가져 오지만 실행하지는 않습니다. 그렇다면 이러한 솔루션 중 어떤 것이 발견과 함께 작동해야합니까? 방금 시도했지만 아무것도 작동하지 않습니다. 아니면 뭔가 빠졌습니까?
Konstantin

20

두 번째로 코를 사용합니다. 기본 XML보고 기능이 내장되어 있습니다. --with-xunit 명령 줄 옵션을 사용하면 nosetests.xml 파일이 생성됩니다. 예를 들면 다음과 같습니다.

코 테스트 -with-xunit

그런 다음 빌드 후 조치 "Publish JUnit 테스트 결과 보고서"를 추가하고 "test report XMLs"필드를 nosetests.xml로 채우십시오 ($ WORKSPACE에서 nosetest를 실행했다고 가정).


11

unittest-xml-reporting 패키지를 설치하여 XML을 생성하는 테스트 러너를 내장에 추가 할 수 있습니다 unittest.

XML 출력이 내장 된 pytest를 사용 합니다 (명령 줄 옵션).

어느 쪽이든, 쉘 명령을 실행하여 단위 테스트를 수행 할 수 있습니다.


4

나는 코 테스트를 사용했습니다. Jenkins 용 XML을 출력하는 애드온이 있습니다



2
python -m pytest --junit-xml=pytest_unit.xml source_directory/test/unit || true # tests may fail

이것을 jenkins에서 쉘로 실행하면 pytest_unit.xml의 보고서를 이슈로 얻을 수 있습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.