Skip to content

Commit 8057127

Browse files
committed
Remove unnecessary changes
1 parent d95d66d commit 8057127

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.ci/compute_projects.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,7 @@ def _compute_projects_to_test(modified_projects: Set[str], platform: str) -> Set
195195
def _compute_projects_to_build(
196196
projects_to_test: Set[str], runtimes: Set[str]
197197
) -> Set[str]:
198-
projects_with_deps = _add_dependencies(projects_to_test, runtimes)
199-
return projects_with_deps
198+
return _add_dependencies(projects_to_test, runtimes)
200199

201200

202201
def _compute_project_check_targets(projects_to_test: Set[str]) -> Set[str]:

.ci/compute_projects_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def test_mlir(self):
183183
)
184184
self.assertEqual(env_variables["projects_to_build"], "clang;flang;llvm;mlir")
185185
self.assertEqual(
186-
env_variables["project_check_targets"], "check-flang check-mlir",
186+
env_variables["project_check_targets"], "check-flang check-mlir"
187187
)
188188
self.assertEqual(env_variables["runtimes_to_build"], "")
189189
self.assertEqual(env_variables["runtimes_check_targets"], "")

0 commit comments

Comments
 (0)