diff --git a/.travis.yml b/.travis.yml index 57a5162..56e36c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ python: - "pypy" before_install: - sudo apt-get update -qq - - sudo apt-get install -qq glpk python-glpk + - sudo apt-get install -qq glpk #- pip install glpk #- sudo apt-get install coinor-cbc # command to install dependencies diff --git a/src/pulp/tests.py b/src/pulp/tests.py index 6d63a81..bffdd88 100644 --- a/src/pulp/tests.py +++ b/src/pulp/tests.py @@ -82,7 +82,8 @@ def pulpTest009(solver): pulpTestCheck(prob, solver, [LpStatusInfeasible], {x:4, y:-1, z:6, w:0}, use_mps = False) else: - pulpTestCheck(prob, solver, [LpStatusInfeasible, LpStatusNotSolved]) + pulpTestCheck(prob, solver, [LpStatusInfeasible, LpStatusNotSolved, + LpStatusUndefined]) def pulpTest010(solver):