File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -445,18 +445,18 @@ class BuildScriptInvocation(object):
445
445
self .platforms_to_skip_test .add (StdlibDeploymentTarget .Cygwin )
446
446
if args .skip_test_osx :
447
447
self .platforms_to_skip_test .add (StdlibDeploymentTarget .OSX )
448
- if args . skip_test_ios_host :
449
- self .platforms_to_skip_test .add (StdlibDeploymentTarget .iOS )
448
+ # iOS device tests are not supported.
449
+ self .platforms_to_skip_test .add (StdlibDeploymentTarget .iOS )
450
450
if args .skip_test_ios_simulator :
451
451
self .platforms_to_skip_test .add (
452
452
StdlibDeploymentTarget .iOSSimulator )
453
- if args . skip_test_tvos_host :
454
- self .platforms_to_skip_test .add (StdlibDeploymentTarget .AppleTV )
453
+ # tvOS device tests are not supported.
454
+ self .platforms_to_skip_test .add (StdlibDeploymentTarget .AppleTV )
455
455
if args .skip_test_tvos_simulator :
456
456
self .platforms_to_skip_test .add (
457
457
StdlibDeploymentTarget .AppleTVSimulator )
458
- if args . skip_test_watchos_host :
459
- self .platforms_to_skip_test .add (StdlibDeploymentTarget .AppleWatch )
458
+ # watchOS device tests are not supported.
459
+ self .platforms_to_skip_test .add (StdlibDeploymentTarget .AppleWatch )
460
460
if args .skip_test_watchos_simulator :
461
461
self .platforms_to_skip_test .add (
462
462
StdlibDeploymentTarget .AppleWatchSimulator )
You can’t perform that action at this time.
0 commit comments