From 85185b546832c0fb4f7070d85c5dacaf785bbf3d Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Mon, 26 Oct 2020 20:51:09 +0530 Subject: [PATCH 1/2] Switch to scripttest master branch for tests --- tools/requirements/tests.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/requirements/tests.txt b/tools/requirements/tests.txt index ef87225d6c4..e96f4f382be 100644 --- a/tools/requirements/tests.txt +++ b/tools/requirements/tests.txt @@ -11,7 +11,7 @@ pytest-rerunfailures pytest-timeout pytest-xdist pyyaml -scripttest +https://github.com/pypa/scripttest/archive/master.zip setuptools>=39.2.0 # Needed for `setuptools.wheel.Wheel` support. https://github.com/pypa/virtualenv/archive/legacy.zip#egg=virtualenv werkzeug==0.16.0 From c4e77ff1f3dbe82565ebe6776180617700bfe7f1 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Mon, 26 Oct 2020 20:51:26 +0530 Subject: [PATCH 2/2] Ignore the offending "com.apple.dyld" folder --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conftest.py b/tests/conftest.py index bf071c8de7a..317ce7348eb 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -408,6 +408,7 @@ def factory(tmpdir, virtualenv=None): # Do not ignore hidden files, they need to be checked as well ignore_hidden=False, + ignore_temp_paths=["com.apple.dyld"], # We are starting with an already empty directory start_clear=False,