From 6238085b7ef56202b2bf2d830b69e40fb588ea86 Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Thu, 12 Sep 2024 08:26:42 +0200 Subject: [PATCH] Skip a test under windows ... --- src/freesas/test/test_fitting.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/freesas/test/test_fitting.py b/src/freesas/test/test_fitting.py index 1e55f33..cb9d651 100644 --- a/src/freesas/test/test_fitting.py +++ b/src/freesas/test/test_fitting.py @@ -5,7 +5,7 @@ __authors__ = ["Martha Brennich"] __license__ = "MIT" -__date__ = "16/07/2021" +__date__ = "12/09/2024" import unittest @@ -337,6 +337,7 @@ def test_get_guinier_header_without_input_format( msg="header for undefined format is correct", ) + @unittest.skipIf(platform.system() == "Windows", "Only POSIX") def test_collect_files_only_returns_existing_files(self): """Test that collect_files discards strings that do not match an existing file."""