File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1793,14 +1793,12 @@ def test_commandresult_falsy(commandresult_app):
1793
1793
assert commandresult_app .last_result == cmd2 .CommandResult ('' , arg )
1794
1794
1795
1795
1796
- @pytest .mark .skipif (sys .platform .startswith ('win' ), reason = "Test is unreliable on GitHub Actions Windows runners" )
1797
- def test_is_text_file_bad_no_exist (base_app ):
1796
+ @pytest .mark .skipif (sys .platform .startswith ('win' ), reason = "Test is problematic on GitHub Actions Windows runners" )
1797
+ def test_is_text_file_bad_input (base_app ):
1798
1798
# Test with a non-existent file
1799
1799
with pytest .raises (FileNotFoundError ):
1800
1800
utils .is_text_file ('does_not_exist.txt' )
1801
1801
1802
-
1803
- def test_is_text_file_bad_is_dir (base_app ):
1804
1802
# Test with a directory
1805
1803
with pytest .raises (IsADirectoryError ):
1806
1804
utils .is_text_file ('.' )
You can’t perform that action at this time.
0 commit comments