-
Notifications
You must be signed in to change notification settings - Fork 32
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
Fix broken unit tests #680
Conversation
I vote for activating the other unit tests in the builds. This will take a bit longer, but we will notice when problems are introduced. # old, unchanged
global test_suite_basic = true
global test_suite_doctests = VERSION >= v"0.7-" # only run doctests with new Julia version
# new
global test_suite_polyhedra = VERSION < v"0.7-" # only run doctests with old Julia version (for now)
global test_suite_plotting = VERSION < v"0.7-" # only run doctests with old Julia version (for now) |
I agree too. Once |
6ea7e3b
to
95be242
Compare
I had to undo the commit for strict doctests because |
Does |
Unfortunately, that is the case (and there is no fine-tuning option ). |
Now or later, the additional packages used for tests can be added in the |
Alright. Documented here, i'd like |
i suspect (but i'm not 100% sure) that the failure with the v1.0 is the new restriction of the package manager to refuse installing packages which are known not to work in > 0.7. the error message says Resolving package versions...
ERROR: Unsatisfiable requirements detected for package CDDLib [3391f64e]:
CDDLib [3391f64e] log:
├─possible versions are: [0.0.1, 0.1.0-0.1.4, 0.2.0-0.2.3, 0.3.0-0.3.2] or uninstalled
├─restricted to versions 0.3.2-* by an explicit requirement, leaving only versions 0.3.2
└─restricted by julia compatibility requirements to versions: uninstalled — no versions left |
I would rather remove
|
EDIT: Does not close the issue #71.