|
17 | 17 | process_changed_files = compute_changes.process_changed_files |
18 | 18 | Outputs = compute_changes.Outputs |
19 | 19 | ANDROID_DIRS = compute_changes.ANDROID_DIRS |
20 | | -IOS_DIRS = compute_changes.IOS_DIRS |
21 | 20 | MACOS_DIRS = compute_changes.MACOS_DIRS |
22 | 21 | WASI_DIRS = compute_changes.WASI_DIRS |
23 | 22 | RUN_TESTS_IGNORE = compute_changes.RUN_TESTS_IGNORE |
@@ -64,14 +63,6 @@ def test_android(self): |
64 | 63 | self.assertTrue(result.run_android) |
65 | 64 | self.assertFalse(result.run_windows_tests) |
66 | 65 |
|
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 | | - |
75 | 66 | def test_macos(self): |
76 | 67 | f = {Path(".github/workflows/reusable-macos.yml")} |
77 | 68 | result = process_changed_files(f) |
@@ -123,7 +114,7 @@ def test_all_run(self): |
123 | 114 | result = process_changed_files({Path(f)}) |
124 | 115 | self.assertTrue(result.run_tests) |
125 | 116 | self.assertTrue(result.run_android) |
126 | | - self.assertTrue(result.run_ios) |
| 117 | + self.assertTrue(result.run_docs) |
127 | 118 | self.assertTrue(result.run_macos) |
128 | 119 | self.assertTrue(result.run_ubuntu) |
129 | 120 | self.assertTrue(result.run_wasi) |
|
0 commit comments