diff --git a/README.rst b/README.rst index 9daa85a..148fc27 100644 --- a/README.rst +++ b/README.rst @@ -174,9 +174,9 @@ For ready-to-run code snippets, please also have a look at the `examples directo ... } >>> observations: pd.DataFrame = client.get_observations(options, humanize=False) - >>> observations.info() # doctest: +ELLIPSIS + >>> print(observations.info()) [...] - >>> observations # doctest: +ELLIPSIS + >>> print(observations) [...] diff --git a/pytest.ini b/pytest.ini index cef856a..cafcf7e 100644 --- a/pytest.ini +++ b/pytest.ini @@ -15,3 +15,5 @@ log_date_format = %Y-%m-%dT%H:%M:%S log_cli = true log_cli_level = INFO + +doctest_ellipsis_markers = [...] '...' "..."