@@ -18,7 +18,7 @@ def test_import_arc():
1818@pytest .mark .smoke
1919def test_arc_cli_help_runs ():
2020 """Test that ARC CLI help runs in the docker image."""
21- cmd = ["bash" ,"-lc" ,"micromamba run -n arc_env python -m ARC --help || true" ]
21+ cmd = ["bash" , "-lc" , "micromamba run -n arc_env python -m ARC --help || true" ]
2222 p = subprocess .run (cmd , capture_output = True , text = True )
2323 # Just ensure it executes and prints usage/help
2424 assert "help" in (p .stdout + p .stderr ).lower ()
@@ -27,7 +27,7 @@ def test_arc_cli_help_runs():
2727@pytest .mark .smoke
2828def test_arkane_cli_help_runs ():
2929 """Test that Arkane CLI help runs in the docker image."""
30- cmd = ["bash" ,"-lc" ,"micromamba run -n rmg_env python -m arkane --help || true" ]
30+ cmd = ["bash" , "-lc" ,"micromamba run -n rmg_env python -m arkane --help || true" ]
3131 p = subprocess .run (cmd , capture_output = True , text = True )
3232 # Just ensure it executes and prints usage/help
3333 assert "arkane" in (p .stdout + p .stderr ).lower ()
@@ -60,7 +60,7 @@ def test_rmgpy_imports():
6060m = importlib.import_module('rmgpy')
6161print('rmgpy OK', getattr(m, '__version__', 'unknown'))
6262"""
63- cmd = ["bash" ,"-lc" , f"micromamba run -n rmg_env python - <<'PY'\n { code } \n PY" ]
63+ cmd = ["bash" , "-lc" , f"micromamba run -n rmg_env python - <<'PY'\n { code } \n PY" ]
6464 p = subprocess .run (cmd , capture_output = True , text = True )
6565 assert p .returncode == 0 , p .stderr
6666 assert "rmgpy OK" in p .stdout
0 commit comments