Skip to content

Commit 20fe049

Browse files
committed
Update comments and naming
1 parent a0b0e80 commit 20fe049

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

setup.cfg

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
[metadata]
44
name = something_framework
5+
description = Skeleton Pytest Framework
6+
license = GNU General Public License v3.0
7+
classifiers =
8+
Programming Language :: Python :: 3.7
59

610
[options]
711
zip_safe = False

something/scripting/container.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111

1212
@click.group(help='Functions for interacting with target container')
13-
def main():
13+
def container():
1414
pass
1515

1616

17-
@main.command('checkout', help="create a detached test target container")
17+
@container.command('checkout', help="create a detached test target container")
1818
@click.option('--image', default='centos', help="Image name for container source")
1919
@click.option('--tag', default='latest', help="Image tag for container source")
2020
@click.option('--command', default='tail -f /dev/null', help='Command to run on container')
@@ -41,4 +41,4 @@ def exit_with_cleanup(signum, frame):
4141

4242

4343
if __name__ == "__main__":
44-
main()
44+
container()

something/scripting/smth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# We can add main methods imported from other modules as well that are decorated for click
99

1010
from something.scripting.smth_shell import main as smth_shell_main
11-
from something.scripting.container import main as container_main # this one has its own group
11+
from something.scripting.container import container as container_main # this one has its own group
1212

1313

1414
@click.group()

something/scripting/smth_shell.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from IPython.terminal.interactiveshell import TerminalInteractiveShell
33

44
DEFAULT_IMPORTS = [
5-
'import something.base.someapp',
5+
'from something.utils.target_container import create_docker_container',
66
'from pprint import pformat',
77
# Add other useful default imports for your project
88
]

something/tests/target_resources/test_container_targets.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ def test_custom_target_containers(target_container):
4040
global module_scope_container_id
4141
container, docker_client = target_container
4242
container.reload()
43-
assert module_scope_container_id != container.id # its not the same container from the default test
43+
# its not the same container from the default test
44+
assert module_scope_container_id != container.id
4445
assert container.attrs['State']['Status'] == 'running'
4546
assert container.attrs['State']['Running']
4647
assert 'centos' in container.image.tags[0]

0 commit comments

Comments
 (0)