diff --git a/.github/workflows/test_matrix.json b/.github/workflows/test_matrix.json index 7edb7a3bf..0c9dfedeb 100644 --- a/.github/workflows/test_matrix.json +++ b/.github/workflows/test_matrix.json @@ -72,8 +72,6 @@ "backend": "dask", "experimental": false, "trigger": [ - "push", - "pull_request", "schedule", "workflow_dispatch" ] @@ -306,7 +304,9 @@ "backend": "dask", "experimental": false, "trigger": [ - "schedule", + "pull_request", + "push", + "schedule", "workflow_dispatch" ] }, diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b4908298..3ea983299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/tests/functional_tests/workflow_stack_test.py b/tests/functional_tests/workflow_stack_test.py index 433e1efce..cd9d2f54f 100644 --- a/tests/functional_tests/workflow_stack_test.py +++ b/tests/functional_tests/workflow_stack_test.py @@ -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