ジェンキンスでのPythonユニットテスト?


135

JenkinsにPythonユニットテストケースを実行させるにはどうすればよいですか?組み込みunittestパッケージからのJUnitスタイルのXML出力は可能ですか?


1
すべての回答は、コマンドラインからテストケースを開始することを前提としています。あなたがプログラムでテストを実行したい場合でも、これを試してください:import nose ; nose.runmodule() # aka nose.run(defaultTest=__name__)
MarkHu

1
単純な 'py.test --junitxml results.xml test.py'の提案が質問に最もよく答えます。「yum install pytest」を実行すると、py.testがインストールされます。その後、任意のユニットテストPythonスクリプトを実行して、jUnit xmlの結果を取得できます
2016年

1
jenkinsの部分に答えますが、組み込みのユニットテストモジュールを使用するための要件を満たしていません。そのプロジェクトでは、それは所定の要件でした。
erikbwork 2016年

@ erikb85「任意のunittest pythonスクリプトを実行する」と言うときは、unittestモジュールを使用するスクリプトを意味します。
2016年

回答:


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>

nose2のJUnit

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。「yum install pytest」を実行すると、py.testがインストールされます。その後、任意のunittest pythonスクリプトを実行して、jUnit xmlの結果を取得できます。
2016年

1
あなたが使用したい場合unittestの-XML-報告からと利益をテストディスカバリ機能、あなたが置くことができますunittest.main(module=None, testRunner=xmlrunner.XMLTestRunner(output='test-reports'))
Rosberg Linhares 2017年

@RosbergLinhares module=NoneTest Discoveryを使用する必要があるのはなぜですか?これは、回答で説明されているとおりに機能しますunittest.main(testRunner=xmlrunner.XMLTestRunner(output='test-reports'))
acm 2017

@RosbergLinhares、テスト検出中、モジュールはインポートされるだけで実行されません。それでは、これらのソリューションのいずれかがディスカバリーで機能するはずです。試してみましたが、どれも機能しません。それとも何か不足していますか?
コンスタンティン

20

次に鼻を使います。基本的なXMLレポートが組み込まれました。--with-xunitコマンドラインオプションを使用するだけで、nosetests.xmlファイルが生成されます。例えば:

nosetests --with-xunit

次に、「JUnitテスト結果レポートの公開」ポストビルドアクションを追加し、「テストレポートXML」フィールドにnosetests.xmlを入力します($ WORKSPACEでnosetestsを実行したと想定)。


11

unittest-xml-reportingパッケージをインストールして、XMLを生成するテストランナーを組み込みに追加できますunittest

XML出力が組み込まれているpytestを使用します(これはコマンドラインオプションです)。

どちらの方法でも、ユニットコマンドの実行はシェルコマンドを実行することで実行できます。




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.