From 1983934cf1c87e0224b733cc6e6ce6846bd7eb53 Mon Sep 17 00:00:00 2001 From: Maxim Ivanov Date: Mon, 30 Nov 2020 10:15:40 +0700 Subject: [PATCH 1/2] TST: add comment that plotting tests are slow --- pandas/tests/plotting/common.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandas/tests/plotting/common.py b/pandas/tests/plotting/common.py index c868c8d4fba07..8bdb350378450 100644 --- a/pandas/tests/plotting/common.py +++ b/pandas/tests/plotting/common.py @@ -1,3 +1,9 @@ +""" +Module consolidating common testing functions for checking plotting. + +Currently all plotting tests are marked as slow. +""" + import os from typing import TYPE_CHECKING, Sequence, Union import warnings From 8a71526448bdff531a2113dccf2f5e86a61a1a87 Mon Sep 17 00:00:00 2001 From: Maxim Ivanov Date: Tue, 1 Dec 2020 10:32:37 +0700 Subject: [PATCH 2/2] TST: more specific comment --- pandas/tests/plotting/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/tests/plotting/common.py b/pandas/tests/plotting/common.py index 8bdb350378450..1f94e18d8e622 100644 --- a/pandas/tests/plotting/common.py +++ b/pandas/tests/plotting/common.py @@ -1,7 +1,8 @@ """ Module consolidating common testing functions for checking plotting. -Currently all plotting tests are marked as slow. +Currently all plotting tests are marked as slow via +``pytestmark = pytest.mark.slow`` at the module level. """ import os