Skip to content

Commit cb1ef6d

Browse files
committed
add some more docstrings
1 parent 189a496 commit cb1ef6d

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

tests/test_check.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Confirm some known-bad CWL descriptions."""
12
import pytest
23

34
from cwltool.main import main

tests/test_context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
@windows_needs_docker
99
def test_replace_default_stdout_stderr() -> None:
10+
"""Test our ability to replace the default stdout/err."""
1011
import sys
1112

1213
# break stdout & stderr

tests/test_secrets.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
@pytest.fixture
1616
def secrets() -> Tuple[SecretStore, CWLObjectType]:
17+
"""Fixture to return a secret store."""
1718
sec_store = SecretStore()
1819
job: CWLObjectType = {"foo": "bar", "baz": "quux"}
1920

@@ -22,6 +23,7 @@ def secrets() -> Tuple[SecretStore, CWLObjectType]:
2223

2324

2425
def test_obscuring(secrets: Tuple[SecretStore, CWLObjectType]) -> None:
26+
"""Basic test of secret store."""
2527
storage, obscured = secrets
2628
assert obscured["foo"] != "bar"
2729
assert obscured["baz"] == "quux"

0 commit comments

Comments
 (0)