Skip to content

Commit

Permalink
✅ update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Wytamma committed Nov 17, 2024
1 parent 93ae297 commit c2d4693
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions tests/data/workflow/snk.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
additional_snakemake_args: []
art: null
min_snk_cli_version: 0.6.2
cli:
choice:
choices:
- a
- b
- c
default: a
help: A string to test
hidden:
hidden: true
no_run:
Expand All @@ -11,13 +17,6 @@ cli:
type: bool
null_annotation:
default: null
choice:
choices:
- a
- b
- c
default: a
help: A string to test
test:
another:
test:
Expand Down Expand Up @@ -64,9 +63,10 @@ conda: true
configfile: null
font: cybermedium
logo: MyWorkflow
min_snk_cli_version: 0.6.2
resources: []
skip_missing: false
snakefile: null
symlink_resources: true
tagline: 'A workflow to test the workflow logo and tagline'
tagline: A workflow to test the workflow logo and tagline
version: editable
2 changes: 1 addition & 1 deletion tests/test_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_install_snk_cli_in_venv(nest: Nest, args):
else:
snakemake = f"snakemake=={args['snakemake_version']}"
mock_run.assert_called_once_with(
[pip_path, "install", snakemake, "snk_cli", "setuptools"]
[pip_path, "install", snakemake, "setuptools"]
+ args["dependencies"],
check=True,
)
Expand Down

0 comments on commit c2d4693

Please sign in to comment.