Skip to content

Commit

Permalink
set IS_MACOS_ARM64=False if running on server
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed May 6, 2024
1 parent 6104286 commit a1600f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
from http.client import HTTPConnection
from unittest.mock import Mock

from conftest import IS_MACOS_ARM64

from msl.loadlib import Client64
from msl.loadlib import Server32
from msl.loadlib import Server32Error

if Server32.is_interpreter():
pytest = Mock()
skipif_no_server32 = Mock()
IS_MACOS_ARM64 = False
else:
import pytest
from conftest import IS_MACOS_ARM64
from conftest import skipif_no_server32
from msl.loadlib.constants import DEFAULT_EXTENSION

Expand Down

0 comments on commit a1600f8

Please sign in to comment.