Skip to content

Commit

Permalink
Merge pull request #430 from biosustain/fix_missing_methionine_input
Browse files Browse the repository at this point in the history
Merging without review to get the fix out faster.
  • Loading branch information
teddygroves authored Jul 31, 2023
2 parents e35142e + 71b37dd commit 7c0fe7a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ packages = [
# data packages
"maud.data",
"maud.data.example_inputs",
"maud.data.example_inputs.linear",
"maud.data.example_inputs.example_ode",
"maud.data.example_inputs.linear",
"maud.data.example_inputs.methionine",
"maud.data.example_outputs",
"maud.data.example_outputs.linear",
"maud.data.example_outputs.linear.user_input",
Expand Down
12 changes: 12 additions & 0 deletions tests/test_unit/test_cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""Test functions in the cli module."""

from click.testing import CliRunner

from maud.cli import cli


def test_maud_help():
"""Test that running `maud --help` does not raise an error."""
runner = CliRunner()
result = runner.invoke(cli, ["--help"])
assert result.exit_code == 0

0 comments on commit 7c0fe7a

Please sign in to comment.