Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Overhang.IO committed Nov 20, 2023
2 parents 3c433a4 + 691513b commit ad6be1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion tutormfe/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ad6be1c

Please sign in to comment.