Skip to content

Commit

Permalink
syntax fix (#1210)
Browse files Browse the repository at this point in the history
* syntax fix

* syntax fix

* syntax fix

* changelog

* changelog
  • Loading branch information
wjcunningham7 authored Sep 14, 2022
1 parent e5a7db5 commit 8115e57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' ] \
Expand Down
15 changes: 3 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.
Expand All @@ -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
Expand Down

0 comments on commit 8115e57

Please sign in to comment.