From 285217dc97f24fe853695adf65ad664371e5a497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Tue, 2 Jul 2024 17:28:54 +0200 Subject: [PATCH] fix : dummy export instead of test_export to avoid confusion between test.py & generated export --- .gitignore | 2 +- aidge_core/unit_tests/test_export.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8be5de110..824243fd9 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,7 @@ _version.py *xmlrunner-results.xml # python test artifact -aidge_core/test_export/* +aidge_core/dummy_export/* # Mermaid *.mmd diff --git a/aidge_core/unit_tests/test_export.py b/aidge_core/unit_tests/test_export.py index 6f39613af..59f4d7bf0 100644 --- a/aidge_core/unit_tests/test_export.py +++ b/aidge_core/unit_tests/test_export.py @@ -48,7 +48,7 @@ class test_export(unittest.TestCase): """Test aidge export""" def setUp(self): - self.EXPORT_PATH = pathlib.Path("test_export") + self.EXPORT_PATH = pathlib.Path("dummy_export") def tearDown(self): pass -- GitLab