Adding comparison script to list patches added to one distro compared to another
[integration/test.git] / tools / distchanges / tests / test_changes.py
index 8fb8d1d9774a970f406418185c559fa66f7354c8..0fc57b2a9c8fb2d1a27cca788fe75709f4466681 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 import unittest
-
+import distcompare
 from changes import Changes
 
 REMOTE_URL = 'ssh://git.opendaylight.org:29418'
@@ -53,6 +53,9 @@ class TestChanges(unittest.TestCase):
         changes = Changes(BRANCH, DISTRO_PATH, LIMIT, QLIMIT, project_names, REMOTE_URL)
         print("utc: %s" % changes.epoch_to_utc(1483974872))
 
+    def test_distcompare(self):
+        distcompare.main()
+
 
 if __name__ == '__main__':
     unittest.main()