diff --git a/pyomo/solvers/tests/mip/test_mip.py b/pyomo/solvers/tests/mip/test_mip.py deleted file mode 100644 index 58cdfe9f7de..00000000000 --- a/pyomo/solvers/tests/mip/test_mip.py +++ /dev/null @@ -1,23 +0,0 @@ -# ___________________________________________________________________________ -# -# Pyomo: Python Optimization Modeling Objects -# Copyright (c) 2008-2024 -# National Technology and Engineering Solutions of Sandia, LLC -# Under the terms of Contract DE-NA0003525 with National Technology and -# Engineering Solutions of Sandia, LLC, the U.S. Government retains certain -# rights in this software. -# This software is distributed under the 3-clause BSD License. -# ___________________________________________________________________________ -# -# Tests driven by test_mip.yml -# - -import os -from os.path import abspath, dirname - -currdir = dirname(abspath(__file__)) + os.sep - -import pyomo.common.unittest as unittest - -if __name__ == "__main__": - unittest.main() diff --git a/pyomo/solvers/tests/mip/test_mip.yml b/pyomo/solvers/tests/mip/test_mip.yml deleted file mode 100644 index b3d1610b581..00000000000 --- a/pyomo/solvers/tests/mip/test_mip.yml +++ /dev/null @@ -1,103 +0,0 @@ -python: - - import pyomo.opt - -driver: pyomo.mip - -solvers: - glpk: - _mock_glpk: - cplex: - _mock_cplex: - cbc: - _mock_cbc: - gurobi: - asl_gurobi: - name: 'asl:gurobi_ampl' - -problems: - test1: - files: test1.mps - test2: - files: test2.lp - test4: - files: test4.nl - -suites: - - glpk: - categories: - - nightly - - smoke - - glpk - solvers: - glpk: - _mock_glpk: - problems: - test1: - baseline: test1_glpk.txt - test2: - baseline: test2_glpk.txt - test4: - baseline: test4_glpk.txt - use_pico_convert: True - - cplex: - categories: - - nightly - - smoke - - cplex - solvers: - cplex: - _mock_cplex: - problems: - test1: - baseline: test1_cplex.txt - test2: - baseline: test2_cplex.txt - test4: - baseline: test4_cplex.txt - - gurobi: - categories: - - nightly - - smoke - - gurobi - solvers: - gurobi: - problems: - test1: - baseline: test1_gurobi.txt - test2: - baseline: test2_gurobi.txt - test4: - baseline: test4_gurobi.txt - use_pico_convert: True - - asl: - categories: - - asl - solvers: - asl_gurobi: - problems: - test4: - baseline: test4_gurobi.txt - results_format: sol - - cbc: - categories: - - nightly - - smoke - - cbc - solvers: - cbc: - _mock_cbc: - problems: - test1: - baseline: test1_cbc.txt - test2: - baseline: test2_cbc.txt - test4: - baseline: test4_cbc.txt - use_pico_convert: True - results_format: sol -