forked from pulp/pulp_puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-tests.py
executable file
·58 lines (49 loc) · 1.73 KB
/
run-tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright © 2012 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public
# License as published by the Free Software Foundation; either version
# 2 of the License (GPLv2) or (at your option) any later version.
# There is NO WARRANTY for this software, express or implied,
# including the implied warranties of MERCHANTABILITY,
# NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
# have received a copy of GPLv2 along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
import argparse
import os
import subprocess
import sys
# Find and eradicate any existing .pyc files, so they do not eradicate us!
PROJECT_DIR = os.path.dirname(__file__)
subprocess.call(['find', PROJECT_DIR, '-name', '*.pyc', '-delete'])
PACKAGES = ['pulp_puppet', ]
TESTS = [
'pulp_puppet_common/test/unit/',
'pulp_puppet_extensions_admin/test/unit/',
'pulp_puppet_extensions_consumer/test/unit/',
'pulp_puppet_handlers/test/unit/',
]
args = [
'nosetests',
'--with-coverage',
'--cover-html',
'--cover-erase',
'--cover-package',
','.join(PACKAGES), ]
# run the plugins tests if we are not on RHEL5
if sys.version_info >= (2, 6):
TESTS.extend(['pulp_puppet_plugins/test/unit/', ])
args.extend(TESTS)
#add ability to specify nosetest options
parser = argparse.ArgumentParser()
parser.add_argument('--xunit-file')
parser.add_argument('--with-xunit', action='store_true')
arguments = parser.parse_args()
if arguments.with_xunit:
args.extend(['--with-xunit', '--process-timeout=360'])
if arguments.xunit_file:
args.extend(['--xunit-file', '../test/' + arguments.xunit_file])
print ' '.join(args)
subprocess.call(args)