Rename helpers->package_helper.py

This commit is contained in:
Ayaz Salikhov
2022-01-21 23:54:44 +02:00
parent 8deebb1616
commit 2fee7b754c
3 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ import logging
import pytest import pytest
from conftest import TrackedContainer from conftest import TrackedContainer
from helpers import CondaPackageHelper from package_helper import CondaPackageHelper
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)

View File

@@ -23,9 +23,9 @@ Example:
# [...] # [...]
# test/test_packages.py::test_python_packages # test/test_packages.py::test_python_packages
# --------------------------------------------------------------------------------------------- live log setup ---------------------------------------------------------------------------------------------- # --------------------------------------------------------------------------------------------- live log setup ----------------------------------------------------------------------------------------------
# 2020-03-08 09:56:04 [ INFO] Starting container jupyter/datascience-notebook ... (helpers.py:51) # 2020-03-08 09:56:04 [ INFO] Starting container jupyter/datascience-notebook ... (package_helper.py:51)
# 2020-03-08 09:56:04 [ INFO] Running jupyter/datascience-notebook with args {'detach': True, 'ports': {'8888/tcp': 8888}, 'tty': True, 'command': ['start.sh', 'bash', '-c', 'sleep infinity']} ... (conftest.py:78) # 2020-03-08 09:56:04 [ INFO] Running jupyter/datascience-notebook with args {'detach': True, 'ports': {'8888/tcp': 8888}, 'tty': True, 'command': ['start.sh', 'bash', '-c', 'sleep infinity']} ... (conftest.py:78)
# 2020-03-08 09:56:04 [ INFO] Grabing the list of manually requested packages ... (helpers.py:76) # 2020-03-08 09:56:04 [ INFO] Grabing the list of manually requested packages ... (package_helper.py:76)
# ---------------------------------------------------------------------------------------------- live log call ---------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------- live log call ----------------------------------------------------------------------------------------------
# 2020-03-08 09:56:07 [ INFO] Testing the import of packages ... (test_packages.py:125) # 2020-03-08 09:56:07 [ INFO] Testing the import of packages ... (test_packages.py:125)
# 2020-03-08 09:56:07 [ INFO] Trying to import conda (test_packages.py:127) # 2020-03-08 09:56:07 [ INFO] Trying to import conda (test_packages.py:127)
@@ -40,7 +40,7 @@ import logging
import pytest import pytest
from conftest import TrackedContainer from conftest import TrackedContainer
from helpers import CondaPackageHelper from package_helper import CondaPackageHelper
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)