Skip to content

Commit

Permalink
fixed pycodestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Acribbs committed Dec 2, 2024
1 parent 449ce23 commit e54a0d5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from unittest.mock import patch, MagicMock
from executor import P


@pytest.mark.parametrize("container_runtime, image, volumes, env_vars, expected_command", [
("docker", "ubuntu:20.04", ["/data:/data"], {"MY_VAR": "value"},
"docker run --rm -v /data:/data -e MY_VAR=value ubuntu:20.04 /bin/bash -c 'echo Hello from Docker'"),
Expand Down

0 comments on commit e54a0d5

Please sign in to comment.