We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65d5f90 commit 5408636Copy full SHA for 5408636
tests/test_client.py
@@ -2,6 +2,7 @@
2
from unittest import mock
3
import json
4
import os
5
+import platform
6
import subprocess
7
import time
8
from pathlib import Path
@@ -18,6 +19,11 @@ def get_expected_url(params):
18
19
if os.getenv('TEST_NODE_PARITY') != '1':
20
return None
21
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
+
27
# Check for tsx before trying to use it
28
tsx_path = subprocess.run(['which', 'tsx'], capture_output=True)
29
if tsx_path.returncode != 0:
0 commit comments