Skip to content

Commit

Permalink
Fix flag to skip fetching git deps in aptos move test (#7931)
Browse files Browse the repository at this point in the history
  • Loading branch information
banool authored Apr 26, 2023
1 parent 1551ea9 commit e735a68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/aptos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Aptos CLI will be captured in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and the format set out by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased
### Fixed
* Previously `--skip-fetch-latest-git-deps` would not actually do anything when used with `aptos move test`. This has been fixed.

## [1.0.12] - 2023/04/25
### Added
* Support for creating and interacting with multisig accounts v2. More details can be found at [AIP 12](https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-12.md).
Expand Down
1 change: 1 addition & 0 deletions crates/aptos/src/move_tool/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ impl CliCommand<&'static str> for TestPackage {
additional_named_addresses: self.move_options.named_addresses(),
test_mode: true,
install_dir: self.move_options.output_dir.clone(),
skip_fetch_latest_git_deps: self.move_options.skip_fetch_latest_git_deps,
..Default::default()
};

Expand Down

0 comments on commit e735a68

Please sign in to comment.