From 9b78f23ca32feebeec4c866e6a53cd6535c0ebd9 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Fri, 21 Aug 2020 19:34:00 -0400 Subject: [PATCH] Skip receive mode file permission tests in Windows --- tests/test_gui_receive.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_gui_receive.py b/tests/test_gui_receive.py index bd9cf491..d9501460 100644 --- a/tests/test_gui_receive.py +++ b/tests/test_gui_receive.py @@ -2,6 +2,7 @@ import pytest import os import requests import shutil +import sys from datetime import datetime, timedelta from PyQt5 import QtCore, QtTest @@ -213,6 +214,7 @@ class TestReceive(GuiBaseTest): self.close_all_tabs() @pytest.mark.gui + @pytest.mark.skipif(sys.platform == "win32", reason="Windows doesn't have chmod") def test_upload_non_writable_dir(self): """ Test uploading files to a non-writable directory @@ -237,6 +239,7 @@ class TestReceive(GuiBaseTest): self.close_all_tabs() @pytest.mark.gui + @pytest.mark.skipif(sys.platform == "win32", reason="Windows doesn't have chmod") def test_public_upload_non_writable_dir(self): """ Test uploading files to a non-writable directory in public mode