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

add more tests (in particular from MathProgBase) #73

Merged
merged 20 commits into from
Oct 24, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
suppress warnings in some older tests
  • Loading branch information
rschwarz committed Oct 24, 2018
commit 3dca87496555e01e587ae2426c8dbe6f64ecf3eb
4 changes: 2 additions & 2 deletions test/more_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ end
# This makes the initial point feasible
setvalue(x[3], 10.0)

solve(m)
solve(m, suppress_warnings=true)

@test getvalue(x)[3] == 10.0
end
Expand All @@ -89,7 +89,7 @@ end

@objective(m, Max, x + 2y)

solve(m)
solve(m, suppress_warnings=true)

@test getvalue(x) ≈ 1.0
@test getvalue(y) ≈ 1.0
Expand Down