From 8115e5743c36bc399f0f5671da1fe9e863aafd0e Mon Sep 17 00:00:00 2001 From: Will Cunningham Date: Tue, 13 Sep 2022 23:15:34 -0400 Subject: [PATCH] syntax fix (#1210) * syntax fix * syntax fix * syntax fix * changelog * changelog --- .github/workflows/tests.yml | 6 +++--- CHANGELOG.md | 15 +++------------ 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f651dc062..d2a5c1349 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -109,9 +109,9 @@ jobs: - name: Generate environment variables run: | - if [ ${{ matrix.os }} = 'ubuntu-latest' ] \ - && [ ${{ contains(matrix.container, 'ubuntu20-py38') }} ] \ - && [ ${{ matrix.backend }} = 'dask' ] ; then + if ${{ matrix.os == 'ubuntu-latest' + && contains(matrix.container, 'ubuntu20-py38') + && matrix.backend == 'dask' }} ; then RECOMMENDED_PLATFORM=true fi if [ ${{ steps.modified-files.outputs.sdk }} = 'true' ] \ diff --git a/CHANGELOG.md b/CHANGELOG.md index eccb5d751..e055f76f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,18 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Operations - Fix `release.yml` workflow - -### Operations - - Adding a step in `release.yml/docker` job to trigger the AWS executor base image build in the remote repo `covalent-aws-plugins` - Pass all the necessary inputs for the triggered workflow as part of the HTTP POST request body +- Added MacOS 12 to test matrix -### Changed - -- Skipping stalling `dask_executor` functional test ### Changed +- Skipping stalling `dask_executor` functional test - Database is initialized in `covalent_ui/app.py` instead of in the CLI's `start` method in order to support management via `start-stop-daemon`. - Convert `COVALENT_SVC_PORT` to `int` when parsing env var @@ -31,8 +27,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Modified `_DEFAULT_CONFIG` to also be a dataclass called `DefaultConfig`, which is initialized whenever needed and used like a dictionary (named `DEFAULT_CONFIG`). - `ConfigManager` is now thread safe since it is initialized whenever needed instead of one object being accessed by multiple processes/threads leading to corruption of the config file. - Using `contextlib.supress` to ignore `psutil.NoSuchProcess` errors instead of `try/except` with `pass`. - -### Added - Filter workflow dispatches by status on the GUI. - Delete all workflow dispatches present in the database from the GUI and add filter level deletion of workflow dispatches as well. - Theme changes as part of latest wireframe. @@ -59,16 +53,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed inheritance of `call_before` metadata related to file transfers from parent electron to collected nodes. - Executor instances at runtime no longer inadvertently modify transport graph nodes when modifying their attributes. +- Syntax error in `tests.yml` ### Docs - Updated AWS Lambda plugin rtd with mention to its limitations. - Updated RTD concepts and tutorials to reflect new UI. -### Operations - -- Added MacOS 12 to test matrix - ## [0.197.0] - 2022-09-08 ### Authors