From 3356863ce2a2b89d2083c07bcac471a17b25078c Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Tue, 4 Jun 2024 14:49:35 -0400 Subject: [PATCH 1/3] add print statement to test --- tests/integration/test_concat_with_subsetting_first.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_concat_with_subsetting_first.py b/tests/integration/test_concat_with_subsetting_first.py index 50c9635..486e324 100644 --- a/tests/integration/test_concat_with_subsetting_first.py +++ b/tests/integration/test_concat_with_subsetting_first.py @@ -29,6 +29,7 @@ def test_concat_with_subsetting_first(temp_output_dir): # Download the result files. futures = harmony_client.download_all(job_id, directory=str(temp_output_dir)) file_names = [f.result() for f in futures] + print(f"File names: {file_names}") # Try concatenating the resulting files output_path = stitchee( From a8bc98a40e0422c4073eb3ba7e25dcd26ad5d239 Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Tue, 4 Jun 2024 15:41:41 -0400 Subject: [PATCH 2/3] explicitly set concatenate=False --- tests/integration/test_concat_with_subsetting_first.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_concat_with_subsetting_first.py b/tests/integration/test_concat_with_subsetting_first.py index 486e324..a045224 100644 --- a/tests/integration/test_concat_with_subsetting_first.py +++ b/tests/integration/test_concat_with_subsetting_first.py @@ -17,6 +17,7 @@ def test_concat_with_subsetting_first(temp_output_dir): "stop": dt.datetime(2024, 5, 13, 20, 0, 0), }, spatial=BBox(-130, 30, -115, 35), + concatenate=False, ) if not request.is_valid(): raise RuntimeError From a7461f39980b88925deb593a3dbc2f050e22e604 Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Tue, 4 Jun 2024 15:59:33 -0400 Subject: [PATCH 3/3] update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 976e0da..d307976 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Deprecated ### Removed ### Fixed +- [Issue #204](https://github.com/nasa/stitchee/issues/204): Fix integration test failure ## [1.2.1]