Skip to content

Commit

Permalink
fix test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed Mar 29, 2024
1 parent 731ab1d commit 9027ebb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/makim/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def _load_shell_app(self) -> None:
shell_config = tmp_config

cmd_name = str(shell_config.get('app', ''))
cmd_args: list[str] = cast(list[str], shell_config.get('args', []))
cmd_args: list[str] = cast(List[str], shell_config.get('args', []))
cmd_tmp_suffix: str = str(
shell_config.get('suffix', tmp_suffix_default)
)
Expand Down
12 changes: 6 additions & 6 deletions tests/smoke/.makim-interpreters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ groups:

all:
dependencies:
- target: node
- target: perl
- target: main.node
- target: main.perl
# note: php from conda-forge has conflicts with r-base
# - target: php
- target: python
- target: r
- target: sh
# - target: main.php
- target: main.python
- target: main.r
- target: main.sh

0 comments on commit 9027ebb

Please sign in to comment.