Skip to content

Commit 8b51b3a

Browse files
EliahKaganByron
authored andcommitted
Rename create_archive_if_{not_on_ci -> we_should}
This renames the private funciton `create_archive_if_not_on_ci` in gix-testtols to `create_archive_if_we_should`, because it already checks for much more than whether we are on CI to decide whether or not to create the archive. This archive is also (already) not created if we are running on Windows, if the archive destination is excluded by being ignored in any `.gitignore`, or if Git LFS is in use and the archive is an LFS pointer file.
1 parent 6963b37 commit 8b51b3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/tools/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ fn scripted_fixture_read_only_with_args_inner(
569569
output.stdout.as_bstr(),
570570
output.stderr.as_bstr()
571571
);
572-
create_archive_if_not_on_ci(
572+
create_archive_if_we_should(
573573
&script_result_directory,
574574
&archive_file_path,
575575
script_identity_for_archive,
@@ -644,7 +644,7 @@ fn is_lfs_pointer_file(path: &Path) -> bool {
644644

645645
/// The `script_identity` will be baked into the soon to be created `archive` as it identifies the script
646646
/// that created the contents of `source_dir`.
647-
fn create_archive_if_not_on_ci(source_dir: &Path, archive: &Path, script_identity: u32) -> std::io::Result<()> {
647+
fn create_archive_if_we_should(source_dir: &Path, archive: &Path, script_identity: u32) -> std::io::Result<()> {
648648
// On Windows, we fail to remove the meta_dir and can't do anything about it, which means tests will see more
649649
// in the directory than they should which makes them fail. It's probably a bad idea to generate archives on Windows
650650
// anyway. Either Unix is portable OR no archive is created anywhere. This also means that Windows users can't create

0 commit comments

Comments
 (0)