forked from extern/httpie-cli
Skip test_config_file_inaccessible on Windows
This commit is contained in:
parent
0af486d1b7
commit
7390869cd6
@ -1,3 +1,6 @@
|
|||||||
|
import pytest
|
||||||
|
|
||||||
|
from httpie.compat import is_windows
|
||||||
from httpie.config import Config
|
from httpie.config import Config
|
||||||
from utils import HTTP_OK, MockEnvironment, http
|
from utils import HTTP_OK, MockEnvironment, http
|
||||||
|
|
||||||
@ -23,7 +26,8 @@ def test_config_file_not_valid(httpbin):
|
|||||||
assert 'invalid config file' in r.stderr
|
assert 'invalid config file' in r.stderr
|
||||||
|
|
||||||
|
|
||||||
def test_config_file_not_inaccessible(httpbin):
|
@pytest.mark.skipif(is_windows, reason='cannot chmod 000 on Windows')
|
||||||
|
def test_config_file_inaccessible(httpbin):
|
||||||
env = MockEnvironment()
|
env = MockEnvironment()
|
||||||
env.create_temp_config_dir()
|
env.create_temp_config_dir()
|
||||||
config_path = env.config_dir / Config.FILENAME
|
config_path = env.config_dir / Config.FILENAME
|
||||||
|
Loading…
Reference in New Issue
Block a user