From: Yaroslav Halchenko Date: Sun, 18 Feb 2018 23:10:00 +0000 (-0500) Subject: BF: mark two tests (test_{statsmodels,seaborn}) as requiring network X-Git-Tag: archive/raspbian/0.22.0-6+rpi1^2~7 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2fd99c1ac175c1e8b3458d89ae0e40159d83b83e;p=pandas.git BF: mark two tests (test_{statsmodels,seaborn}) as requiring network Gbp-Pq: Name 0001-BF-mark-two-tests-test_-statsmodels-seaborn-as-requi.patch --- diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py index b8e91910..690b0b0f 100644 --- a/pandas/tests/test_downstream.py +++ b/pandas/tests/test_downstream.py @@ -52,6 +52,7 @@ def test_xarray(df): assert df.to_xarray() is not None +@tm.network def test_statsmodels(): statsmodels = import_module('statsmodels') # noqa @@ -72,6 +73,7 @@ def test_scikit_learn(df): clf.predict(digits.data[-1:]) +@tm.network def test_seaborn(): seaborn = import_module('seaborn')