Skip to content
Snippets Groups Projects
Commit ed934e03 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Test for maxima executable: PYMBOLIC env var, not SUMPY

parent 6c6c3a59
Branches
Tags
1 merge request!19tests: skip tests if maxima not available
Pipeline #
......@@ -47,7 +47,6 @@ from pymbolic.parser import Parser as ParserBase, FinalizedTuple
# {{{ check for maxima executable
def _find_maxima_executable():
import os
......@@ -56,7 +55,7 @@ def _find_maxima_executable():
global FOUND_MAXIMA
executable = os.environ.get("SUMPY_MAXIMA_EXECUTABLE", "maxima")
executable = os.environ.get("PYMBOLIC_MAXIMA_EXECUTABLE", "maxima")
FOUND_MAXIMA = False
if is_executable(executable):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment