The __pycache__ is created based on python3 version in the build machine and isn't a garantee to be useful on the system that runs exported tests.
Signed-off-by: Aníbal Limón <[email protected]> --- meta/classes/testexport.bbclass | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meta/classes/testexport.bbclass b/meta/classes/testexport.bbclass index 8b01504d3a..f38d093e81 100644 --- a/meta/classes/testexport.bbclass +++ b/meta/classes/testexport.bbclass @@ -131,6 +131,11 @@ def copy_needed_files(d, tc): shutil.copy2(image_manifest, os.path.join(test_data_path, os.path.basename(image_manifest))) shutil.copy2(tdname, os.path.join(test_data_path, os.path.basename(tdname))) + for subdir, dirs, files in os.walk(export_path): + for dir in dirs: + if dir == '__pycache__': + shutil.rmtree(os.path.join(subdir, dir)) + # Create tar file for common parts of testexport create_tarball(d, "testexport.tar.gz", d.getVar("TEST_EXPORT_DIR")) -- 2.11.0 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
