bokeh¶
The bokeh
module itself contains a few useful functions and attributes:
-
__version__
= currently installed version of Bokeh¶
-
test
(args=None)[source]¶ Run the Bokeh unit tests under the bokeh python directory using
py.test
.Note
Does not run any BokehJS, examples, or integration tests.
Parameters: args (list, optional) – command line arguments accepted by
py.test
For example,
args=['-s', '-k plotting']
prevents capture of standard out and only runs tests that match"plotting"
. For morepy.test
options see http://pytest.org/latest/usage.html.Returns: py.test
exitcodeReturn type: int