Skip to content

Commit

Permalink
coverage and fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
eacharles committed Jan 16, 2025
1 parent 8399e1b commit 1f0c528
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ dependencies = [
"pz-rail-pipelines",
"matplotlib",
"yamllint",
"pyarrow",
]
# On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)
[project.optional-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion src/rail/cli/rail_project/project_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ def subsample_command(config_file: str, **kwargs: Any) -> int:
@project_options.run_mode()
@project_options.site()
@project_options.args()
def sbatch_command(run_mode: project_options.RunMode, site: str, args: list[str]) -> int:
def sbatch_command(run_mode: project_options.RunMode, site: str, args: list[str]) -> int: # pragma: no cover
"""Wrap a rail_pipe command with site-based arguements for slurm"""
return project_scripts.sbatch_wrap(run_mode, site, args)


@project_cli.group(name="reduce")
def reduce_group() -> None:
"""Reduce input data for PZ analysis"""
Expand Down

0 comments on commit 1f0c528

Please sign in to comment.