Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environment:
- PYTHON: "C:\\Python27"
##- PYTHON: "C:\\Python33"
#- PYTHON: "C:\\Python34"
#- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35"
#- PYTHON: "C:\\Python27-x64"
##- PYTHON: "C:\\Python33-x64"
## DISTUTILS_USE_SDK: "1"
Expand All @@ -35,7 +35,7 @@ test_script:
# only needed to support those cases.
# Note that you must use the environment variable %PYTHON% to refer to
# the interpreter you're using - Appveyor does not do anything special
# to put the Python evrsion you want to use on PATH.
# to put the Python version you want to use on PATH.
- "%PYTHON%\\python.exe setup.py develop"
- "%PYTHON%\\Scripts\\test.pyomo.exe --cat=nightly --cov -v"

Expand Down
3 changes: 3 additions & 0 deletions pyomo/core/tests/unit/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ def tearDown(self):
pyutilib.services.TempfileManager.clear_tempfiles()


def test_force_failure(self):
self.assertEqual(0,1)

def test_clone_concrete_model(self):
def _populate(b, *args):
b.A = RangeSet(1,3)
Expand Down