1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Ole Streicher <olebole@debian.org>
Date: Sun, 7 Nov 2021 11:50:23 +0100
Subject: Skip test_load_sample that requires remote data access
---
yt/tests/test_load_sample.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/yt/tests/test_load_sample.py b/yt/tests/test_load_sample.py
index f76ba4d..185c9d5 100644
--- a/yt/tests/test_load_sample.py
+++ b/yt/tests/test_load_sample.py
@@ -6,6 +6,7 @@ import textwrap
import numpy as np
import pytest
+pytestmark = pytest.mark.skip
from yt.config import ytcfg
from yt.loaders import load_sample
|