From 71319b8de5237a15132c7847f043dd5ce4aa8f14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Tue, 2 Jul 2024 15:31:48 +0200
Subject: [PATCH] feat: gitignore export of test

---
 .gitignore                           | 3 +++
 aidge_core/unit_tests/test_export.py | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 7994946a0..999248b26 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,6 +18,9 @@ wheelhouse/*
 _version.py
 *xmlrunner-results.xml
 
+# python test artifact
+*test_export/*
+
 # Mermaid
 *.mmd
 
diff --git a/aidge_core/unit_tests/test_export.py b/aidge_core/unit_tests/test_export.py
index 96e2226be..6f39613af 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("myexport")
+        self.EXPORT_PATH = pathlib.Path("test_export")
 
     def tearDown(self):
         pass
-- 
GitLab