diff options
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index ae96bfa..90641ad 100755 --- a/run_tests.py +++ b/run_tests.py @@ -14,9 +14,13 @@ # See the License for the specific language governing permissions and # limitations under the License. +# Work around some pathlib bugs... +from mesonbuild import _pathlib +import sys +sys.modules['pathlib'] = _pathlib + import collections import os -import sys import time import shutil import subprocess |