From 4796c7e71d9585189ef909a3849a98ce943bc1b0 Mon Sep 17 00:00:00 2001 From: Martin PELLEMOINE Date: Thu, 13 Jun 2024 15:20:02 +0200 Subject: [PATCH] tests => test --- conda/meta.yaml | 6 +++--- src/openalea/mtg/version.py | 2 +- {tests => test}/__init__.py | 0 {tests => test}/data/agraf.drf | 0 {tests => test}/data/leaf_axis.drf | 0 {tests => test}/data/monopodial_plant.mtg | 0 {tests => test}/data/mtg1.mtg | 0 {tests => test}/data/mtg2.mtg | 0 {tests => test}/data/mtg3.mtg | 0 {tests => test}/data/mtg4.mtg | 0 {tests => test}/data/mtg5.mtg | 0 {tests => test}/data/mtg51.mtg | 0 {tests => test}/data/mtg_dynamic.mtg | 0 {tests => test}/data/noyer.drf | 0 {tests => test}/data/oaktree.drf | 0 {tests => test}/data/origin.drf | 0 {tests => test}/data/reconstructed_appletree.mtg | 0 {tests => test}/data/test10_agraf.mtg | 0 {tests => test}/data/test11_wij10.mtg | 0 {tests => test}/data/test12_wij10.mtg | 0 {tests => test}/data/test6_apricot2.mtg | 0 {tests => test}/data/test7.mtg | 0 {tests => test}/data/test8_boutdenoylum2.mtg | 0 {tests => test}/data/test9_noylum2.mtg | 0 {tests => test}/data/walnut.drf | 0 {tests => test}/data/wij10.drf | 0 {tests => test}/debug.py | 0 {tests => test}/eurograph.py | 0 {tests => test}/random_mtg.py | 0 {tests => test}/simple.lpy | 0 {tests => test}/test_aml.py | 0 {tests => test}/test_dresser.py | 0 {tests => test}/test_edition.py | 0 {tests => test}/test_lsystem.py | 0 {tests => test}/test_mtg.py | 0 {tests => test}/test_operation.py | 0 {tests => test}/test_parsing.py | 0 {tests => test}/test_parsing_axialtree.py | 0 {tests => test}/test_parsing_mtg.py | 0 {tests => test}/test_plantframe1.py | 0 {tests => test}/test_proxynode.py | 0 {tests => test}/test_rewriting.py | 0 {tests => test}/test_stat.py | 0 {tests => test}/test_traversal.py | 0 {tests => test}/test_tree.py | 0 {tests => test}/test_tulip.py | 0 {tests => test}/test_turtle.py | 0 {tests => test}/test_writing_mtg.py | 0 {tests => test}/test_writing_mtg2.py | 0 {tests => test}/toto.xls | 0 {tests => test}/visu3d.py | 0 51 files changed, 4 insertions(+), 4 deletions(-) rename {tests => test}/__init__.py (100%) rename {tests => test}/data/agraf.drf (100%) rename {tests => test}/data/leaf_axis.drf (100%) rename {tests => test}/data/monopodial_plant.mtg (100%) rename {tests => test}/data/mtg1.mtg (100%) rename {tests => test}/data/mtg2.mtg (100%) rename {tests => test}/data/mtg3.mtg (100%) rename {tests => test}/data/mtg4.mtg (100%) rename {tests => test}/data/mtg5.mtg (100%) rename {tests => test}/data/mtg51.mtg (100%) rename {tests => test}/data/mtg_dynamic.mtg (100%) rename {tests => test}/data/noyer.drf (100%) rename {tests => test}/data/oaktree.drf (100%) rename {tests => test}/data/origin.drf (100%) rename {tests => test}/data/reconstructed_appletree.mtg (100%) rename {tests => test}/data/test10_agraf.mtg (100%) rename {tests => test}/data/test11_wij10.mtg (100%) rename {tests => test}/data/test12_wij10.mtg (100%) rename {tests => test}/data/test6_apricot2.mtg (100%) rename {tests => test}/data/test7.mtg (100%) rename {tests => test}/data/test8_boutdenoylum2.mtg (100%) rename {tests => test}/data/test9_noylum2.mtg (100%) rename {tests => test}/data/walnut.drf (100%) rename {tests => test}/data/wij10.drf (100%) rename {tests => test}/debug.py (100%) rename {tests => test}/eurograph.py (100%) rename {tests => test}/random_mtg.py (100%) rename {tests => test}/simple.lpy (100%) rename {tests => test}/test_aml.py (100%) rename {tests => test}/test_dresser.py (100%) rename {tests => test}/test_edition.py (100%) rename {tests => test}/test_lsystem.py (100%) rename {tests => test}/test_mtg.py (100%) rename {tests => test}/test_operation.py (100%) rename {tests => test}/test_parsing.py (100%) rename {tests => test}/test_parsing_axialtree.py (100%) rename {tests => test}/test_parsing_mtg.py (100%) rename {tests => test}/test_plantframe1.py (100%) rename {tests => test}/test_proxynode.py (100%) rename {tests => test}/test_rewriting.py (100%) rename {tests => test}/test_stat.py (100%) rename {tests => test}/test_traversal.py (100%) rename {tests => test}/test_tree.py (100%) rename {tests => test}/test_tulip.py (100%) rename {tests => test}/test_turtle.py (100%) rename {tests => test}/test_writing_mtg.py (100%) rename {tests => test}/test_writing_mtg2.py (100%) rename {tests => test}/toto.xls (100%) rename {tests => test}/visu3d.py (100%) diff --git a/conda/meta.yaml b/conda/meta.yaml index 0b73e93..b1d752a 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -34,10 +34,10 @@ test: - openalea.mtg source_files: - share/data/** - - tests/** - - tests/data/** + - test/** + - test/data/** commands: - - cd tests + - cd test - pytest -v --ignore=test_aml.py --ignore=test_stat.py about: diff --git a/src/openalea/mtg/version.py b/src/openalea/mtg/version.py index dd20995..d72c00e 100644 --- a/src/openalea/mtg/version.py +++ b/src/openalea/mtg/version.py @@ -7,7 +7,7 @@ minor = 3 """(int) Version minor component.""" -post = 0 +post = 1 """(int) Version post or bugfix component.""" __version__ = ".".join([str(s) for s in (major, minor, post)]) diff --git a/tests/__init__.py b/test/__init__.py similarity index 100% rename from tests/__init__.py rename to test/__init__.py diff --git a/tests/data/agraf.drf b/test/data/agraf.drf similarity index 100% rename from tests/data/agraf.drf rename to test/data/agraf.drf diff --git a/tests/data/leaf_axis.drf b/test/data/leaf_axis.drf similarity index 100% rename from tests/data/leaf_axis.drf rename to test/data/leaf_axis.drf diff --git a/tests/data/monopodial_plant.mtg b/test/data/monopodial_plant.mtg similarity index 100% rename from tests/data/monopodial_plant.mtg rename to test/data/monopodial_plant.mtg diff --git a/tests/data/mtg1.mtg b/test/data/mtg1.mtg similarity index 100% rename from tests/data/mtg1.mtg rename to test/data/mtg1.mtg diff --git a/tests/data/mtg2.mtg b/test/data/mtg2.mtg similarity index 100% rename from tests/data/mtg2.mtg rename to test/data/mtg2.mtg diff --git a/tests/data/mtg3.mtg b/test/data/mtg3.mtg similarity index 100% rename from tests/data/mtg3.mtg rename to test/data/mtg3.mtg diff --git a/tests/data/mtg4.mtg b/test/data/mtg4.mtg similarity index 100% rename from tests/data/mtg4.mtg rename to test/data/mtg4.mtg diff --git a/tests/data/mtg5.mtg b/test/data/mtg5.mtg similarity index 100% rename from tests/data/mtg5.mtg rename to test/data/mtg5.mtg diff --git a/tests/data/mtg51.mtg b/test/data/mtg51.mtg similarity index 100% rename from tests/data/mtg51.mtg rename to test/data/mtg51.mtg diff --git a/tests/data/mtg_dynamic.mtg b/test/data/mtg_dynamic.mtg similarity index 100% rename from tests/data/mtg_dynamic.mtg rename to test/data/mtg_dynamic.mtg diff --git a/tests/data/noyer.drf b/test/data/noyer.drf similarity index 100% rename from tests/data/noyer.drf rename to test/data/noyer.drf diff --git a/tests/data/oaktree.drf b/test/data/oaktree.drf similarity index 100% rename from tests/data/oaktree.drf rename to test/data/oaktree.drf diff --git a/tests/data/origin.drf b/test/data/origin.drf similarity index 100% rename from tests/data/origin.drf rename to test/data/origin.drf diff --git a/tests/data/reconstructed_appletree.mtg b/test/data/reconstructed_appletree.mtg similarity index 100% rename from tests/data/reconstructed_appletree.mtg rename to test/data/reconstructed_appletree.mtg diff --git a/tests/data/test10_agraf.mtg b/test/data/test10_agraf.mtg similarity index 100% rename from tests/data/test10_agraf.mtg rename to test/data/test10_agraf.mtg diff --git a/tests/data/test11_wij10.mtg b/test/data/test11_wij10.mtg similarity index 100% rename from tests/data/test11_wij10.mtg rename to test/data/test11_wij10.mtg diff --git a/tests/data/test12_wij10.mtg b/test/data/test12_wij10.mtg similarity index 100% rename from tests/data/test12_wij10.mtg rename to test/data/test12_wij10.mtg diff --git a/tests/data/test6_apricot2.mtg b/test/data/test6_apricot2.mtg similarity index 100% rename from tests/data/test6_apricot2.mtg rename to test/data/test6_apricot2.mtg diff --git a/tests/data/test7.mtg b/test/data/test7.mtg similarity index 100% rename from tests/data/test7.mtg rename to test/data/test7.mtg diff --git a/tests/data/test8_boutdenoylum2.mtg b/test/data/test8_boutdenoylum2.mtg similarity index 100% rename from tests/data/test8_boutdenoylum2.mtg rename to test/data/test8_boutdenoylum2.mtg diff --git a/tests/data/test9_noylum2.mtg b/test/data/test9_noylum2.mtg similarity index 100% rename from tests/data/test9_noylum2.mtg rename to test/data/test9_noylum2.mtg diff --git a/tests/data/walnut.drf b/test/data/walnut.drf similarity index 100% rename from tests/data/walnut.drf rename to test/data/walnut.drf diff --git a/tests/data/wij10.drf b/test/data/wij10.drf similarity index 100% rename from tests/data/wij10.drf rename to test/data/wij10.drf diff --git a/tests/debug.py b/test/debug.py similarity index 100% rename from tests/debug.py rename to test/debug.py diff --git a/tests/eurograph.py b/test/eurograph.py similarity index 100% rename from tests/eurograph.py rename to test/eurograph.py diff --git a/tests/random_mtg.py b/test/random_mtg.py similarity index 100% rename from tests/random_mtg.py rename to test/random_mtg.py diff --git a/tests/simple.lpy b/test/simple.lpy similarity index 100% rename from tests/simple.lpy rename to test/simple.lpy diff --git a/tests/test_aml.py b/test/test_aml.py similarity index 100% rename from tests/test_aml.py rename to test/test_aml.py diff --git a/tests/test_dresser.py b/test/test_dresser.py similarity index 100% rename from tests/test_dresser.py rename to test/test_dresser.py diff --git a/tests/test_edition.py b/test/test_edition.py similarity index 100% rename from tests/test_edition.py rename to test/test_edition.py diff --git a/tests/test_lsystem.py b/test/test_lsystem.py similarity index 100% rename from tests/test_lsystem.py rename to test/test_lsystem.py diff --git a/tests/test_mtg.py b/test/test_mtg.py similarity index 100% rename from tests/test_mtg.py rename to test/test_mtg.py diff --git a/tests/test_operation.py b/test/test_operation.py similarity index 100% rename from tests/test_operation.py rename to test/test_operation.py diff --git a/tests/test_parsing.py b/test/test_parsing.py similarity index 100% rename from tests/test_parsing.py rename to test/test_parsing.py diff --git a/tests/test_parsing_axialtree.py b/test/test_parsing_axialtree.py similarity index 100% rename from tests/test_parsing_axialtree.py rename to test/test_parsing_axialtree.py diff --git a/tests/test_parsing_mtg.py b/test/test_parsing_mtg.py similarity index 100% rename from tests/test_parsing_mtg.py rename to test/test_parsing_mtg.py diff --git a/tests/test_plantframe1.py b/test/test_plantframe1.py similarity index 100% rename from tests/test_plantframe1.py rename to test/test_plantframe1.py diff --git a/tests/test_proxynode.py b/test/test_proxynode.py similarity index 100% rename from tests/test_proxynode.py rename to test/test_proxynode.py diff --git a/tests/test_rewriting.py b/test/test_rewriting.py similarity index 100% rename from tests/test_rewriting.py rename to test/test_rewriting.py diff --git a/tests/test_stat.py b/test/test_stat.py similarity index 100% rename from tests/test_stat.py rename to test/test_stat.py diff --git a/tests/test_traversal.py b/test/test_traversal.py similarity index 100% rename from tests/test_traversal.py rename to test/test_traversal.py diff --git a/tests/test_tree.py b/test/test_tree.py similarity index 100% rename from tests/test_tree.py rename to test/test_tree.py diff --git a/tests/test_tulip.py b/test/test_tulip.py similarity index 100% rename from tests/test_tulip.py rename to test/test_tulip.py diff --git a/tests/test_turtle.py b/test/test_turtle.py similarity index 100% rename from tests/test_turtle.py rename to test/test_turtle.py diff --git a/tests/test_writing_mtg.py b/test/test_writing_mtg.py similarity index 100% rename from tests/test_writing_mtg.py rename to test/test_writing_mtg.py diff --git a/tests/test_writing_mtg2.py b/test/test_writing_mtg2.py similarity index 100% rename from tests/test_writing_mtg2.py rename to test/test_writing_mtg2.py diff --git a/tests/toto.xls b/test/toto.xls similarity index 100% rename from tests/toto.xls rename to test/toto.xls diff --git a/tests/visu3d.py b/test/visu3d.py similarity index 100% rename from tests/visu3d.py rename to test/visu3d.py