From 95b445a25ae21fd1c77646a888011387c89869a1 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 29 Jan 2021 18:38:33 -0500 Subject: [PATCH] must initialized has_exceptions to avoid false positives in unit tests --- unittest/python/python-open.py | 1 + 1 file changed, 1 insertion(+) diff --git a/unittest/python/python-open.py b/unittest/python/python-open.py index 6153e032e3..67500ea6fa 100644 --- a/unittest/python/python-open.py +++ b/unittest/python/python-open.py @@ -4,6 +4,7 @@ from lammps import lammps has_mpi=False has_mpi4py=False +has_exceptions=False try: from mpi4py import __version__ as mpi4py_version # tested to work with mpi4py versions 2 and 3