Skip to content

Commit

Permalink
adds missing docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
BWMac committed Nov 1, 2023
1 parent 230a3dd commit 18cdd3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_external_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def test_that_a_process_can_be_serialized_and_deserialized():

# TODO Make changes to fully support Docker-enabled tests in macOS
def docker_enabled_test(func):
"""Marks Docker-enabled tests to only run in Linux environments."""
return pytest.mark.skipif(
"linux" not in sys.platform.lower(),
reason="Docker-enabled tests only run in Linux",
Expand Down Expand Up @@ -82,7 +83,6 @@ def execute(self):
stderr=True,
volumes={self.local_path: {"bind": self.container_path, "mode": "ro"}},
working_dir="/",
# remove=True, UNCOMMENT THIS WHEN READY TO COMMIT
)
self.exit_code = str(container.wait()["StatusCode"])
self.std_out = container.logs(stdout=True, stderr=False).decode("utf-8")
Expand Down

0 comments on commit 18cdd3b

Please sign in to comment.