Skip to content

Commit

Permalink
Missing disabling some of the GSS store unit tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ronf committed Aug 25, 2024
1 parent 8dd1838 commit 22affce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_connection_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@ async def test_disabled_trivial_auth(self):
class _TestGSSAuth(ServerTestCase):
"""Unit tests for GSS authentication"""

@unittest.skipIf(sys.platform == 'win32', 'skip GSS store test on Windows')
@classmethod
async def start_server(cls):
"""Start an SSH server which supports GSS authentication"""
Expand Down Expand Up @@ -490,6 +491,7 @@ async def test_gss_mic_auth(self):
username='user', gss_host='1'):
pass

@unittest.skipIf(sys.platform == 'win32', 'skip GSS store test on Windows')
@asynctest
async def test_gss_mic_auth_store(self):
"""Test GSS MIC authentication with GSS store set"""
Expand All @@ -514,7 +516,6 @@ async def test_gss_mic_auth_verify_error(self):
await self.connect(kex_algs=['ecdh-sha2-nistp256'],
username='user', gss_host='1,verify_error')

@unittest.skipIf(sys.platform == 'win32', 'skip GSS store test on Windows')
@asynctest
async def test_gss_delegate(self):
"""Test GSS credential delegation"""
Expand Down

0 comments on commit 22affce

Please sign in to comment.