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

[Don't merge] Temporarily enable MacOS 12 / Python 3.8 / Dask test #1748

Closed
wants to merge 3 commits into from
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/test_matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@
"backend": "dask",
"experimental": false,
"trigger": [
"push",
"pull_request",
"schedule",
"workflow_dispatch"
]
Expand Down Expand Up @@ -306,7 +304,9 @@
"backend": "dask",
"experimental": false,
"trigger": [
"schedule",
"pull_request",
"push",
"schedule",
"workflow_dispatch"
]
},
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Operations

- Temporarily enable mac os test on push
- Respecting node version as specified in `.nvmrc` file for tests workflow
- Bumped versions in pre-commit config
- Added prettier for markdown files.
Expand Down
3 changes: 3 additions & 0 deletions tests/functional_tests/workflow_stack_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,9 @@ def workflow():

rm._delete_result(dispatch_id)

print(workflow_result.get_node_result(0)["stderr"])
print(workflow_result.get_node_result(0)["error"])
assert workflow_result.error == ""
assert workflow_result.status == Result.COMPLETED


Expand Down
Loading