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
|
#!/usr/bin/env python
""" toxhelper is a simple wrapper of pytest and coverage to be used with tox.
It is specially useful to avoid path and interpreter problems while running
tests with jenkins in OS X, Linux and Windows using the same configuration.
See https://tabo.pe/jenkins/ for the results.
"""
import sys
import os
import os.path
import pytest
from coverage import coverage
def run_the_tests():
tests_dir = os.path.join(os.path.dirname(__file__), "../../../.tests")
if not os.path.isdir(tests_dir):
os.mkdir(tests_dir)
if 'TOX_DB' in os.environ:
os.environ['DATABASE_HOST'], os.environ['DATABASE_PORT'] = {
'pgsql': ('dummy_test_database_server', '5434'),
'mysql': ('dummy_test_database_server', '3308'),
'sqlite': ('', ''),
}[os.environ['TOX_DB']]
cov = coverage()
cov.start()
test_result = pytest.main(sys.argv[1:])
cov.stop()
cov.save()
return test_result
if __name__ == '__main__':
sys.exit(run_the_tests())
|