From cdca75db66e274828b8d6af8e17c1597c8ef70f5 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 29 Jun 2017 09:56:00 -0500 Subject: [PATCH 1/2] TST: register slow marker --- doc/source/whatsnew/v0.20.3.txt | 2 +- setup.cfg | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index c730142450ea6..17195715d0f95 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -37,7 +37,7 @@ Performance Improvements Bug Fixes ~~~~~~~~~ - Fixed issue with dataframe scatter plot for categorical data that reports incorrect column key not found when categorical data is used for plotting (:issue:`16199`) - +- Fixed a pytest marker failing downstream packages' tests suites (:issue:`16680`) diff --git a/setup.cfg b/setup.cfg index 8b32f0f62fe28..5efd9b7f1c078 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,8 +22,7 @@ split_penalty_after_opening_bracket = 1000000 split_penalty_logical_operator = 30 [tool:pytest] -# TODO: Change all yield-based (nose-style) fixutures to pytest fixtures -# Silencing the warning until then testpaths = pandas markers = single: mark a test as single cpu only + slow: mark a tests as slow From 72328efadb3ddaabf445bb1e8076a2e3d84c3add Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 29 Jun 2017 10:52:34 -0500 Subject: [PATCH 2/2] Update setup.cfg --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 5efd9b7f1c078..1f9bea6718a4d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,4 +25,4 @@ split_penalty_logical_operator = 30 testpaths = pandas markers = single: mark a test as single cpu only - slow: mark a tests as slow + slow: mark a test as slow