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

Fix integration test failure #205

Merged
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
2 changes: 2 additions & 0 deletions tests/integration/test_concat_with_subsetting_first.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -29,6 +30,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(
Expand Down