Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[devtools] Enable the framework upgrade test again #15763

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions devtools/aptos-cargo-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,17 +272,13 @@ impl AptosCargoCommand {

// Determine if any relevant files or packages were changed
#[allow(unused_assignments)]
let mut relevant_changes_detected = detect_relevant_changes(
let relevant_changes_detected = detect_relevant_changes(
RELEVANT_FILE_PATHS_FOR_FRAMEWORK_UPGRADE_TESTS.to_vec(),
RELEVANT_PACKAGES_FOR_FRAMEWORK_UPGRADE_TESTS.to_vec(),
changed_files,
affected_package_paths,
);

// TODO: remove this! This is a temporary fix to disable
// the framework upgrade test while we debug the failures.
relevant_changes_detected = false;

// Output if relevant changes were detected that require the framework upgrade
// test. This will be consumed by Github Actions and used to run the test.
println!(
Expand Down
Loading