Skip to content

Commit e15f006

Browse files
Fix, iOS is not here
1 parent 1be2039 commit e15f006

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

Lib/test/test_tools/test_compute_changes.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
process_changed_files = compute_changes.process_changed_files
1818
Outputs = compute_changes.Outputs
1919
ANDROID_DIRS = compute_changes.ANDROID_DIRS
20-
IOS_DIRS = compute_changes.IOS_DIRS
2120
MACOS_DIRS = compute_changes.MACOS_DIRS
2221
WASI_DIRS = compute_changes.WASI_DIRS
2322
RUN_TESTS_IGNORE = compute_changes.RUN_TESTS_IGNORE
@@ -64,14 +63,6 @@ def test_android(self):
6463
self.assertTrue(result.run_android)
6564
self.assertFalse(result.run_windows_tests)
6665

67-
def test_ios(self):
68-
for d in IOS_DIRS:
69-
with self.subTest(d=d):
70-
result = process_changed_files({Path(d) / "file"})
71-
self.assertTrue(result.run_tests)
72-
self.assertTrue(result.run_ios)
73-
self.assertFalse(result.run_windows_tests)
74-
7566
def test_macos(self):
7667
f = {Path(".github/workflows/reusable-macos.yml")}
7768
result = process_changed_files(f)
@@ -123,7 +114,7 @@ def test_all_run(self):
123114
result = process_changed_files({Path(f)})
124115
self.assertTrue(result.run_tests)
125116
self.assertTrue(result.run_android)
126-
self.assertTrue(result.run_ios)
117+
self.assertTrue(result.run_docs)
127118
self.assertTrue(result.run_macos)
128119
self.assertTrue(result.run_ubuntu)
129120
self.assertTrue(result.run_wasi)

0 commit comments

Comments
 (0)