From 569966792da2ee651cdc7ca0b65c76da857d9387 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Mon, 22 Jul 2024 09:50:06 +0200
Subject: [PATCH] chore : removed redundant dummy test

---
 aidge_learning/unit_tests/dummy_test.py | 19 -------------------
 aidge_learning/unit_tests/test_dummy.py |  3 ++-
 2 files changed, 2 insertions(+), 20 deletions(-)
 delete mode 100644 aidge_learning/unit_tests/dummy_test.py

diff --git a/aidge_learning/unit_tests/dummy_test.py b/aidge_learning/unit_tests/dummy_test.py
deleted file mode 100644
index ddc4691..0000000
--- a/aidge_learning/unit_tests/dummy_test.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import unittest
-
-
-class test_export(unittest.TestCase):
-    """Test tensor binding"""
-
-    def setUp(self):
-        pass
-
-    def tearDown(self):
-        pass
-
-    def test_export_cpp(self):
-        print("Learning tests to do.")
-        self.assertEqual(True, True)
-
-
-if __name__ == "__main__":
-    unittest.main()
diff --git a/aidge_learning/unit_tests/test_dummy.py b/aidge_learning/unit_tests/test_dummy.py
index 6285178..9676512 100644
--- a/aidge_learning/unit_tests/test_dummy.py
+++ b/aidge_learning/unit_tests/test_dummy.py
@@ -14,7 +14,8 @@ import aidge_learning
 
 
 class test_dummy(unittest.TestCase):
-    """Test tensor binding
+    """
+    Dummy test to satisfy the CI
     """
     def setUp(self):
         pass
-- 
GitLab