From 7aa72a69c75f907f971941c738f34b0eb902c181 Mon Sep 17 00:00:00 2001 From: zssherman Date: Tue, 18 Feb 2025 13:15:48 -0600 Subject: [PATCH 1/2] TST: Skip test involved with downloading data at the moment. --- tests/testing/test_example_datasets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/testing/test_example_datasets.py b/tests/testing/test_example_datasets.py index c3f96843b1..fcae7221bb 100644 --- a/tests/testing/test_example_datasets.py +++ b/tests/testing/test_example_datasets.py @@ -1,4 +1,5 @@ import pathlib +import pytest from pyart.testing.example_data import DATASETS, get_test_data, locate @@ -15,6 +16,7 @@ def test_locate(): assert pathlib.Path(p).exists +@pytest.mark.skip(reason="ARM Data downloads are limited at the moment.") def test_get_test_data(): test_file = "034142.mdv" file_path = get_test_data(test_file) From d180394943dbadeba97eeb6dbaa5acea46fb022f Mon Sep 17 00:00:00 2001 From: zssherman Date: Tue, 18 Feb 2025 13:20:32 -0600 Subject: [PATCH 2/2] STY: Fix PEP8 import. --- tests/testing/test_example_datasets.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/testing/test_example_datasets.py b/tests/testing/test_example_datasets.py index fcae7221bb..faaf5da8e2 100644 --- a/tests/testing/test_example_datasets.py +++ b/tests/testing/test_example_datasets.py @@ -1,4 +1,5 @@ import pathlib + import pytest from pyart.testing.example_data import DATASETS, get_test_data, locate