From fb969436af3ebbdc81c15b23ad8b1ef37a8c2694 Mon Sep 17 00:00:00 2001 From: duerpei Date: Wed, 12 Jul 2023 04:58:50 +0800 Subject: agl-test-framework: replace "-" with "_" Replace "-" with "_" in the name of the directory to solve the following errors when running agl-test: import file mismatch: imported module 'run_tests' has this __file__ attribute: /usr/AGL/agl-test/tests/aio-stress/run_tests.py which is not the same as the test file we want to collect: /usr/AGL/agl-test/tests/gdk-pixbuf/run_tests.py HINT: remove __pycache__ / .pyc files and/or use a unique basename for your test file modules Bug-AGL: SPEC-4345 Signed-off-by: duerpei Change-Id: Id8028dfbda618a9b7858602d3832bf2eb7f7ef5e --- tests/gdk_pixbuf/__init__.py | 0 tests/gdk_pixbuf/run_tests.py | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 tests/gdk_pixbuf/__init__.py create mode 100644 tests/gdk_pixbuf/run_tests.py (limited to 'tests/gdk_pixbuf') diff --git a/tests/gdk_pixbuf/__init__.py b/tests/gdk_pixbuf/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/gdk_pixbuf/run_tests.py b/tests/gdk_pixbuf/run_tests.py new file mode 100644 index 0000000..56bda29 --- /dev/null +++ b/tests/gdk_pixbuf/run_tests.py @@ -0,0 +1,29 @@ +import pytest + +import plugins.agl_test_log as log + +from plugins.agl_test_ptest_base import PTESTBase + +class GdkPixbufBase(PTESTBase): + def __init__(self): + super().__init__(test_name="gdk-pixbuf") + + def log_process(self): + log_file = self.get_logfile() + self.case_info_list = log.log_process_gnome_desktop_testing(log_file) + +instance = GdkPixbufBase() +instance.run_ptest() + +@pytest.fixture(scope='module') +def testbase(): + yield instance + #package log files and make report file + instance.log_report() + +@pytest.mark.parametrize('case_name', instance.case_info_list.keys()) +def test_gdk_pixbuf(testbase: GdkPixbufBase, case_name): + testbase.run_case(case_name) + +if __name__ == '__main__': + pytest.main("-s run_tests") -- cgit