Skip to content

Commit e20fa80

Browse files
committed
Added copilot suggestions for fomatting
1 parent ffd2134 commit e20fa80

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dockerfiles/docker_tests/test_docker_smoke.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_import_arc():
1818
@pytest.mark.smoke
1919
def 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
2828
def 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():
6060
m = importlib.import_module('rmgpy')
6161
print('rmgpy OK', getattr(m, '__version__', 'unknown'))
6262
"""
63-
cmd = ["bash","-lc", f"micromamba run -n rmg_env python - <<'PY'\n{code}\nPY"]
63+
cmd = ["bash", "-lc", f"micromamba run -n rmg_env python - <<'PY'\n{code}\nPY"]
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

Comments
 (0)