From b630a92d5e821a37dc5e174171c6323811a3df63 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 2 May 2021 15:51:39 -0700 Subject: Fix CLI tests in macOS --- cli/tests/test_cli_web.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/tests/test_cli_web.py b/cli/tests/test_cli_web.py index 9bb640e1..ec51654c 100644 --- a/cli/tests/test_cli_web.py +++ b/cli/tests/test_cli_web.py @@ -8,7 +8,7 @@ import zipfile import tempfile import base64 import shutil -import platform +import sys from io import BytesIO import pytest @@ -616,7 +616,7 @@ class TestRangeRequests: h.add("Authorization", "Basic " + auth) return h - @pytest.mark.skipif(platform.system() == "Windows", reason="skip Windows") + @pytest.mark.skipif(sys.platform != "Linux", reason="requires Linux") @check_unsupported("curl", ["--version"]) def test_curl(self, temp_dir, tmpdir, common_obj): web = web_obj(temp_dir, common_obj, "share", 3) @@ -641,7 +641,7 @@ class TestRangeRequests: ] ) - @pytest.mark.skipif(platform.system() == "Windows", reason="skip Windows") + @pytest.mark.skipif(sys.platform != "Linux", reason="requires Linux") @check_unsupported("wget", ["--version"]) def test_wget(self, temp_dir, tmpdir, common_obj): web = web_obj(temp_dir, common_obj, "share", 3) @@ -665,7 +665,7 @@ class TestRangeRequests: ] ) - @pytest.mark.skipif(platform.system() == "Windows", reason="skip Windows") + @pytest.mark.skipif(sys.platform != "Linux", reason="requires Linux") @check_unsupported("http", ["--version"]) def test_httpie(self, temp_dir, common_obj): web = web_obj(temp_dir, common_obj, "share", 3) -- cgit v1.2.3-54-g00ecf