mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
2ca7ff82ef
Also add two missing headers. [ci skip]
96 lines
3.3 KiB
Python
96 lines
3.3 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# A library that provides a Python interface to the Telegram Bot API
|
|
# Copyright (C) 2015-2018
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
import time
|
|
from collections import defaultdict
|
|
|
|
import _pytest.config
|
|
import pytest
|
|
|
|
fold_plugins = {'_cov': 'Coverage report', 'flaky': 'Flaky report'}
|
|
|
|
|
|
def terminal_summary_wrapper(original, plugin_name):
|
|
text = fold_plugins[plugin_name]
|
|
|
|
def pytest_terminal_summary(terminalreporter):
|
|
terminalreporter.write('travis_fold:start:plugin.{}\n{}\n'.format(plugin_name, text))
|
|
original(terminalreporter)
|
|
terminalreporter.write('travis_fold:end:plugin.{}\n'.format(plugin_name))
|
|
|
|
return pytest_terminal_summary
|
|
|
|
|
|
@pytest.mark.trylast
|
|
def pytest_configure(config):
|
|
for hookimpl in config.pluginmanager.hook.pytest_terminal_summary._nonwrappers:
|
|
if hookimpl.plugin_name in fold_plugins.keys():
|
|
hookimpl.function = terminal_summary_wrapper(hookimpl.function,
|
|
hookimpl.plugin_name)
|
|
|
|
|
|
terminal = None
|
|
previous_name = None
|
|
failed = set()
|
|
durations = defaultdict(int)
|
|
|
|
|
|
def _get_name(location):
|
|
return '{}::{}'.format(location[0], location[2].split('.')[0].split('[')[0])
|
|
|
|
|
|
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
|
|
def pytest_runtest_makereport(item, call):
|
|
outcome = yield
|
|
rep = outcome.get_result()
|
|
name = _get_name(item.location)
|
|
durations[name] += rep.duration
|
|
if rep.failed:
|
|
global failed
|
|
failed.add(name)
|
|
|
|
|
|
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
|
|
def pytest_runtest_protocol(item, nextitem):
|
|
# This is naughty but pytests' own plugins does something similar too, so who cares
|
|
global terminal
|
|
if terminal is None:
|
|
terminal = _pytest.config.create_terminal_writer(item.config)
|
|
|
|
global previous_name
|
|
|
|
name = _get_name(item.location)
|
|
|
|
if previous_name is None or previous_name != name:
|
|
previous_name = name
|
|
terminal.write('\ntravis_fold:start:{}\r'.format(name.split('::')[1]))
|
|
terminal.write('travis_time:start:{}time\r'.format(name.split('::')[1]))
|
|
terminal.write(name)
|
|
|
|
yield
|
|
|
|
if nextitem is None or _get_name(nextitem.location) != name:
|
|
global failed
|
|
if name in failed:
|
|
terminal.write('')
|
|
else:
|
|
terminal.write('\n\ntravis_fold:end:{}'.format(name.split('::')[1]))
|
|
terminal.write('\rtravis_time:end:{}time:'
|
|
'duration={}'.format(name.split('::')[1],
|
|
int(durations[name] * 1E9)))
|
|
time.sleep(0.001) # Tiny sleep so travis hopefully doesn't mangle the log
|