Skip to content

Commit

Permalink
tox python interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
hejamu committed Apr 2, 2024
1 parent e868ae5 commit 927990c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_verbosity_level_warning(caplog):
"""Test the log level warning."""
# This should only print warning messages
output = subprocess.check_output(
["python3", tester_class,
["python", tester_class,
"tester", "-s", TPR, "-f", XTC, "-atomgroup", "all"],
text=True,
)
Expand All @@ -75,7 +75,7 @@ def test_verbosity_level_info(caplog):
# This should only print warning and info messages
output = subprocess.check_output(
[
"python3", tester_class,
"python", tester_class,
"tester", "-s", TPR, "-f", XTC,
"-atomgroup", "all",
"-v",
Expand All @@ -93,7 +93,7 @@ def test_verbosity_level_debug(caplog):
# This should print all messages
output = subprocess.check_output(
[
"python3", tester_class, "--debug",
"python", tester_class, "--debug",
"tester", "-s", TPR, "-f", XTC,
"-atomgroup", "all",
"-v",
Expand Down

0 comments on commit 927990c

Please sign in to comment.