@@ -34,12 +34,11 @@ const RELEVANT_FILE_PATHS_FOR_EXECUTION_PERFORMANCE_TESTS: [&str; 5] = [
3434 "execution/aptos-executor-benchmark" ,
3535 "testsuite/single_node_performance.py" ,
3636] ;
37- const RELEVANT_FILE_PATHS_FOR_FRAMEWORK_UPGRADE_TESTS : [ & str ; 1 ] = [
38- // Framework upgrade test is failing right now, disable except for the release builder
39- // ".github",
40- // "testsuite",
37+ const RELEVANT_FILE_PATHS_FOR_FRAMEWORK_UPGRADE_TESTS : [ & str ; 4 ] = [
38+ ".github" ,
39+ "testsuite" ,
4140 "aptos-move/aptos-release-builder" ,
42- // "aptos-move/framework",
41+ "aptos-move/framework" ,
4342] ;
4443
4544// Relevant packages to monitor when deciding to run the targeted tests
@@ -259,13 +258,18 @@ impl AptosCargoCommand {
259258 self . get_args_and_affected_packages ( package_args) ?;
260259
261260 // Determine if any relevant files or packages were changed
262- let relevant_changes_detected = detect_relevant_changes (
261+ #[ allow( unused_assignments) ]
262+ let mut relevant_changes_detected = detect_relevant_changes (
263263 RELEVANT_FILE_PATHS_FOR_FRAMEWORK_UPGRADE_TESTS . to_vec ( ) ,
264264 RELEVANT_PACKAGES_FOR_FRAMEWORK_UPGRADE_TESTS . to_vec ( ) ,
265265 changed_files,
266266 affected_package_paths,
267267 ) ;
268268
269+ // TODO: remove this! This is a temporary fix to disable
270+ // the framework upgrade test while we debug the failures.
271+ relevant_changes_detected = false ;
272+
269273 // Output if relevant changes were detected that require the framework upgrade
270274 // test. This will be consumed by Github Actions and used to run the test.
271275 println ! (
0 commit comments