代码拉取完成,页面将自动刷新
#-----------------------------------------------------------------------------
# Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors.
# All rights reserved.
#
# The full license is in the file LICENSE.txt, distributed with this software.
#-----------------------------------------------------------------------------
pytest_plugins = (
"bokeh._testing.plugins.ipython",
"bokeh._testing.plugins.managed_server_loop",
"bokeh._testing.plugins.pandas",
)
# Standard library imports
from inspect import iscoroutinefunction
from typing import List
# External imports
import _pytest
import pytest
# Bokeh imports
from bokeh._testing.util.git import version_from_git
def pytest_collection_modifyitems(items: List[_pytest.nodes.Item]) -> None:
for item in items:
if iscoroutinefunction(item.obj):
item.add_marker(pytest.mark.asyncio)
# Unfortunately these seem to all need to be centrally defined at the top level
def pytest_addoption(parser: _pytest.config.argparsing.Parser) -> None:
# plugins/selenium
parser.addoption(
"--driver", choices=('chrome', 'firefox', 'safari'), default='chrome', help='webdriver implementation')
# plugins/bokeh_server
parser.addoption(
"--bokeh-port", dest="bokeh_port", type=int, default=5006, help="port on which Bokeh server resides"
)
# plugins/jupyter_notebook
parser.addoption(
"--notebook-port", type=int, default=6007, help="port on which Jupyter Notebook server resides"
)
# plugins/example_report
parser.addoption(
"--upload", dest="upload", action="store_true", default=False, help="upload test artefacts to S3"
)
parser.addoption(
"--examples-log-file", dest="log_file", metavar="path", action="store", default='examples.log', help="where to write the complete log"
)
parser.addoption(
"--report-path", action='store', dest='report_path', metavar='path', default='report.html',
help='create examples html report file at given path.')
parser.addoption(
"--diff-ref", type=version_from_git, default="HEAD",
help="compare generated images against this ref")
parser.addoption(
"--incremental", action="store_true", default=False,
help="write report after each example")
parser.addoption(
"--no-js", action="store_true", default=False,
help="only run python code and skip js and image diff")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。