Skip to content

Commit 5408636

Browse files
committed
Skip Node.js parity testing on Windows
1 parent 65d5f90 commit 5408636

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from unittest import mock
33
import json
44
import os
5+
import platform
56
import subprocess
67
import time
78
from pathlib import Path
@@ -18,6 +19,11 @@ def get_expected_url(params):
1819
if os.getenv('TEST_NODE_PARITY') != '1':
1920
return None
2021

22+
# Skip Node.js parity testing on Windows
23+
if platform.system() == 'Windows':
24+
print('Skipping Node.js parity testing on Windows')
25+
return None
26+
2127
# Check for tsx before trying to use it
2228
tsx_path = subprocess.run(['which', 'tsx'], capture_output=True)
2329
if tsx_path.returncode != 0:

0 commit comments

Comments
 (0)