arehbein has uploaded this change for review. ( https://gerrit.osmocom.org/c/python/osmo-python-tests/+/30980 )
Change subject: WIP: scripts/osmotestconfig.py: Fix tests failing due to attempted copy on socket files ......................................................................
WIP: scripts/osmotestconfig.py: Fix tests failing due to attempted copy on socket files
Related: OS#5858 Change-Id: I3a3cc7ed135b60b97eb901cfc20fdcb924e4f664 --- M scripts/osmotestconfig.py 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/python/osmo-python-tests refs/changes/80/30980/1
diff --git a/scripts/osmotestconfig.py b/scripts/osmotestconfig.py index 8b3bb84..5302758 100755 --- a/scripts/osmotestconfig.py +++ b/scripts/osmotestconfig.py @@ -77,7 +77,7 @@
def copy_config(dirname, config): shutil.rmtree(dirname, True) - ign = shutil.ignore_patterns('*.cfg') + ign = shutil.ignore_patterns('*.cfg', '*tmp_dummy_sock') shutil.copytree(os.path.dirname(config), dirname, ignore=ign) os.chmod(dirname, stat.S_IRWXU)