From d7d3d3c20485b38647057cf4933d5bc5aceb083c Mon Sep 17 00:00:00 2001 From: fubar2 Date: Thu, 21 Sep 2023 15:48:21 +1000 Subject: [PATCH] renamed unit test back to unit_test.. but that stops it testing - needs to start with test for tox to run automagically it seems. Reverted the sample --- test/import_xml.xml | 5 ++--- test/{test_import.py => unit_test_import_xml.py} | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) rename test/{test_import.py => unit_test_import_xml.py} (99%) diff --git a/test/import_xml.xml b/test/import_xml.xml index b4eca22..132118e 100644 --- a/test/import_xml.xml +++ b/test/import_xml.xml @@ -1,5 +1,5 @@ - + description operation_0004 @@ -18,8 +18,7 @@ v_command - - + diff --git a/test/test_import.py b/test/unit_test_import_xml.py similarity index 99% rename from test/test_import.py rename to test/unit_test_import_xml.py index 90f4c0f..f381076 100644 --- a/test/test_import.py +++ b/test/unit_test_import_xml.py @@ -26,7 +26,6 @@ def test_override(self): exml = self.tool.export() self.assertEqual(self.tool.command_override, col) exml = exml.replace("\n", " ") - print("-----------exml", exml) self.assertTrue(co in exml) class TestCommand(TestImport):