Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove test exclusions that are now passing #55

Merged
merged 1 commit into from
Oct 30, 2024
Merged
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
10 changes: 1 addition & 9 deletions .github/julia/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Create a new `AmplNLWriter.Optimizer` object that uses Uno as the backing
solver.
"""
function Optimizer()
options = String["logger=SILENT"]
options = String["logger=INFO"]
return AmplNLWriter.Optimizer(Uno_jll.amplexe, options)
end

Expand Down Expand Up @@ -86,14 +86,6 @@ end
# The following tests are bugs.
#
# We should fix issues in Uno, and then try removing these lines.
#
# Variable duals aren't written to .sol
r"^test_conic_linear_VectorOfVariables_2$",
r"^test_linear_integration$",
r"^test_quadratic_constraint_GreaterThan$",
r"^test_quadratic_constraint_LessThan$",
r"^test_solve_VariableIndex_ConstraintDual_MAX_SENSE$",
r"^test_solve_VariableIndex_ConstraintDual_MIN_SENSE$",
# These tests return OTHER_LIMIT instead of LOCALLY_SOLVED.
r"^test_linear_transform$",
# These tests return OTHER_LIMIT instead of DUAL_INFEASIBLE. It
Expand Down
Loading