We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e006c9d commit 62f42c4Copy full SHA for 62f42c4
tests/test_cli.py
@@ -46,7 +46,7 @@ def test_generate_template_multiple_states():
46
47
def test_cli_create_help():
48
"""Test that help message works."""
49
- result = runner.invoke(app, ["create", "--help"])
+ result = runner.invoke(app, ["create", "--help"], color=False)
50
assert result.exit_code == 0
51
assert "Create a new HDX-MS dataset" in result.stdout
52
assert "--num-states" in result.stdout
@@ -57,6 +57,6 @@ def test_cli_create_help():
57
58
def test_app_help():
59
"""Test main app help."""
60
- result = runner.invoke(app, ["--help"])
+ result = runner.invoke(app, ["--help"], color=False)
61
62
assert "hdxms-datasets" in result.stdout
0 commit comments