Skip to content

Commit

Permalink
Skip the sqlite chmod test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ppolewicz committed Feb 23, 2022
1 parent 325d7f1 commit 7a05dc9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/unit/account_info/test_account_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ def setUp(self, request):
except OSError:
pass

@pytest.mark.skipif(
platform.system() == 'Windows',
reason='different permission system on Windows'
)
def test_permissions(self):
"""
Test that a new database won't be readable by just any user
Expand Down

0 comments on commit 7a05dc9

Please sign in to comment.