diff --git a/docker-compose.yml b/docker-compose.yml index 471abb6..2d6ff6c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,9 +2,9 @@ version: "3.8" services: test: + network_mode: "host" container_name: "test" hostname: "test" - network_mode: "host" environment: SKIP_INTEGRATION_TESTS: "${SKIP_INTEGRATION_TESTS:-True}" NORNIR_LOG: "${NORNIR_LOG:-False}" diff --git a/poetry.lock b/poetry.lock index 3d3b596..c87d679 100644 --- a/poetry.lock +++ b/poetry.lock @@ -517,6 +517,7 @@ python-versions = ">=3.6" [package.extras] plugins = ["importlib-metadata"] +testutil = ["gitpython (>3)"] [[package]] name = "pynacl" @@ -721,9 +722,9 @@ sphinx = ">=4.0" unidecode = "*" [package.extras] -docs = ["sphinx", "sphinx-rtd-theme"] -dotnet = ["sphinxcontrib-dotnetdomain"] go = ["sphinxcontrib-golangdomain"] +dotnet = ["sphinxcontrib-dotnetdomain"] +docs = ["sphinx-rtd-theme", "sphinx"] [[package]] name = "sphinx-pdj-theme" diff --git a/tests/test_data/schema_path/nokia-conf-aaa.yang b/tests/test_data/schema_path/nokia-conf-aaa.yang index 1fedb03..8ac27fa 100644 --- a/tests/test_data/schema_path/nokia-conf-aaa.yang +++ b/tests/test_data/schema_path/nokia-conf-aaa.yang @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/tests/unit/test_netconf_edit_config_unit.py b/tests/unit/test_netconf_edit_config_unit.py index de6e991..e38f410 100644 --- a/tests/unit/test_netconf_edit_config_unit.py +++ b/tests/unit/test_netconf_edit_config_unit.py @@ -3,6 +3,9 @@ from nornir_netconf.plugins.tasks import netconf_edit_config +# from nornir_utils.plugins.functions import print_result + + DEVICE_NAME = "nokia_rtr"