Skip to content

Commit

Permalink
[forge] Disable the framework upgrade test on most PR
Browse files Browse the repository at this point in the history
Framework upgrade seems to have issue right now with invalid gas
schedule

Lets temporarily remove this from blocking most PR except those touching
the release builder itself

Test Plan:

run locally, make sure PR passes then merge
  • Loading branch information
perryjrandall committed Dec 19, 2024
1 parent 0ec01dd commit cf5d790
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions devtools/aptos-cargo-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ const RELEVANT_FILE_PATHS_FOR_EXECUTION_PERFORMANCE_TESTS: [&str; 5] = [
"execution/aptos-executor-benchmark",
"testsuite/single_node_performance.py",
];
const RELEVANT_FILE_PATHS_FOR_FRAMEWORK_UPGRADE_TESTS: [&str; 4] = [
".github",
"testsuite",
const RELEVANT_FILE_PATHS_FOR_FRAMEWORK_UPGRADE_TESTS: [&str; 1] = [
// Framework upgrade test is failing right now, disable except for the release builder
// ".github",
// "testsuite",
"aptos-move/aptos-release-builder",
"aptos-move/framework",
// "aptos-move/framework",
];

// Relevant packages to monitor when deciding to run the targeted tests
Expand Down

0 comments on commit cf5d790

Please sign in to comment.