Skip to content

Commit 2ce534b

Browse files
committed
Test more combinations of options
1 parent e935692 commit 2ce534b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/julia/tests/test_juliaoptions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
(dict(optimize=3), ["--optimize=3"]),
1515
(dict(threads=4), ["--threads=4"]),
1616
(dict(min_optlevel=2), ["--min-optlevel=2"]),
17+
(dict(threads="auto", optimize=3), ["--optimize=3", '--threads=auto']),
18+
(dict(optimize=3, threads="auto"), ["--optimize=3", '--threads=auto']), # passed order doesn't matter
19+
(dict(compiled_modules=None, depwarn="yes"), ["--depwarn=yes"]),
1720
])
1821
# fmt: on
1922
def test_as_args(kwargs, args):

0 commit comments

Comments
 (0)