File: __init__.py

package info (click to toggle)
pyjunitxml 0.5-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 128 kB
  • ctags: 63
  • sloc: python: 272; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
#  junitxml: extensions to Python unittest to get output junitxml
#  Copyright (C) 2009 Robert Collins <robertc@robertcollins.net>
#
#  Copying permitted under the LGPL-3 licence, included with this library.

import unittest

from junitxml.tests import (
    test_junitxml,
    )

def test_suite():
    return unittest.TestLoader().loadTestsFromNames([
        'junitxml.tests.test_junitxml',
        ])