We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6eaa69 commit a2f6eddCopy full SHA for a2f6edd
tests/test_cli.py
@@ -127,6 +127,17 @@ def test_cli_scriptargs(disable_cli):
127
assert "foo.py" in args
128
129
130
+@pytest.mark.cli
131
+def test_cli_scriptargs_no_script(disable_cli):
132
+ with pytest.raises(Exception):
133
+ _cli_impl(
134
+ exe="AnsysWBU.exe",
135
+ version=241,
136
+ script_args="arg1,arg2,arg3",
137
+ graphical=True,
138
+ )
139
+
140
141
@pytest.mark.cli
142
def test_cli_scriptargs_singlequote(disable_cli):
143
args, _ = _cli_impl(
0 commit comments