Remove variables and scripts for netvirt
[integration/test.git] / tools / distchanges / tests / test_changes.py
index fbc0cd45f15cfe98dbe784276f48f1cb5d0b3561..1667f8ec4e5baeedc6df32a59443dfba621d883b 100644 (file)
@@ -8,14 +8,13 @@ import distcompare
 from changes import Changes
 
 REMOTE_URL = "ssh://git.opendaylight.org:29418"
-NETVIRT_PROJECTS = [
+PROJECT_NAMES = [
     "controller",
     "dlux",
     "dluxapps",
     "infrautils",
     "mdsal",
     "netconf",
-    "netvirt",
     "neutron",
     "odlparent",
     "openflowplugin",
@@ -23,7 +22,6 @@ NETVIRT_PROJECTS = [
     "sfc",
     "yangtools",
 ]
-PROJECT_NAMES = NETVIRT_PROJECTS
 DISTRO_PATH = "/tmp/distribution-karaf"
 BRANCH = "master"
 LIMIT = 10
@@ -44,13 +42,6 @@ class TestChanges(unittest.TestCase):
         projects = changes.run_cmd()
         changes.pretty_print_projects(projects)
 
-    def test_run_cmd_single(self):
-        project_names = ["netvirt"]
-        branch = BRANCH
-        self.run_cmd(
-            branch, DISTRO_PATH, LIMIT, QLIMIT, project_names, REMOTE_URL, logging.INFO
-        )
-
     def test_run_cmd_multiple(self):
         project_names = PROJECT_NAMES
         branch = BRANCH