From defb74a6ccb55dc50f77414e593433e3177bd7b2 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 22 Jun 2023 15:53:12 +0200 Subject: [PATCH] Revert "python --> python3" This reverts commit 062043b76c72f3243e7bb45570e6341057226f48. --- tests/runtests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/runtests.py b/tests/runtests.py index efe3a46..34dd7b1 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python ############################################################################### # Test script for PyNormaliz # ############################################################################### @@ -19,7 +19,7 @@ skip.add("segfault-35.txt") skip.add("vertex_denom-37.txt") skip.add("modify_cone_renf.txt") - + if not PyNormaliz.NmzHasCocoa(): skip.add("test_rational_cones.txt") @@ -33,7 +33,7 @@ continue print("Doctest {}".format(filename)) - result = doctest.testfile(filename, + result = doctest.testfile(filename, optionflags=doctest.IGNORE_EXCEPTION_DETAIL | doctest.NORMALIZE_WHITESPACE | doctest.REPORT_NDIFF)