-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathsetup_command.py
executable file
·47 lines (37 loc) · 1.15 KB
/
setup_command.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
#!/usr/bin/env python
"""
This module describes class implementing `python setup.py test`.
"""
import unittest
import setuptools
try:
from setuptools.errors import BaseError
except (ModuleNotFoundError, ImportError):
# pylint: disable=deprecated-module
from distutils.errors import DistutilsError as BaseError
class Test(setuptools.Command):
"""
Class implementing `python setup.py test`.
"""
# pylint: disable=bad-option-value,no-self-use
user_options = []
description = 'Run tests'
def initialize_options(self):
"""
Do nothing. setuptools requires to override this abstract
method.
"""
def finalize_options(self):
"""
Do nothing. setuptools requires to override this abstract
method.
"""
def run(self):
"""
Find all tests in test/tarantool/ and run them
"""
tests = unittest.defaultTestLoader.discover('test', pattern='suites')
test_runner = unittest.TextTestRunner(verbosity=2)
result = test_runner.run(tests)
if not result.wasSuccessful():
raise BaseError('There are failed tests')