Skip to content

Commit

Permalink
test: skip module test on Windows
Browse files Browse the repository at this point in the history
Life is too short to figure out why it fails.
  • Loading branch information
dvarrazzo committed Jan 4, 2025
1 parent f4282c6 commit b8d49e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from weakref import ref

import unittest
from .testutils import (skip_before_postgres,
from .testutils import (skip_before_postgres, skip_if_windows,
ConnectingTestCase, skip_copy_if_green, skip_if_crdb, slow, StringIO)

import psycopg2
Expand Down Expand Up @@ -330,6 +330,7 @@ def test_pickle_connection_error(self):

class TestExtensionModule(unittest.TestCase):
@slow
@skip_if_windows
def test_import_internal(self):
# check that the internal package can be imported "naked"
# we may break this property if there is a compelling reason to do so,
Expand Down

0 comments on commit b8d49e6

Please sign in to comment.