diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2fadfb31..55e2ff5f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,14 +17,6 @@ jobs: run: python -m pip install --upgrade pip setuptools - name: Install dependencies run: | - pip install black==23.7.0 \ - isort==5.12.0 \ - mypy==1.5.1 \ - pylint==2.17.5 \ - pytest==7.4.2 \ - tutor==16.1.2 \ - types-docutils==0.20.0.3 \ - types-pyyaml==6.0.12.11 \ - types-setuptools==68.1.0.0 + pip install 'tutor[dev]>=16.1.2,<17.0.0' - name: Test lint, types, and format run: make test diff --git a/tutormfe/plugin.py b/tutormfe/plugin.py index 8eca080b..babafdca 100644 --- a/tutormfe/plugin.py +++ b/tutormfe/plugin.py @@ -224,7 +224,9 @@ def _build_3rd_party_dev_mfes_on_launch( image_names: list[str], context_name: t.Literal["local", "dev"] ) -> list[str]: for mfe_name, _mfe_attrs in iter_mfes(): - if __version_suffix__ or (context_name == "dev" and mfe_name not in CORE_MFE_APPS): + if __version_suffix__ or ( + context_name == "dev" and mfe_name not in CORE_MFE_APPS + ): # We build MFE images: # - in nightly # - in development for non-core apps