Working on issue775, we found that our Mac and Windows buildbots are currently
not setup ideally, especially the latter. I think we are not far away from
testing all code steps on all three platforms.
On our Mac machine, all that is missing to properly run all code tests is to
have a Python3 installation (or, more precisely, to have python3 available as
command).
With issue775 merged, the translator should work (again) on Windows, and we
should test this. Currently, we only test compiling on Windows using the "nolp"
build options, because we have OSI installed but not CPLEX. To use the test
scripts out of the box, we need to be able to use the debug32 and release32
builds, for which we need to be able building them. BTW, I figured out [1] that
instead of using "python <some-python-script.py>", we can and should use "py -2
<some-python-script.py>" or "py -3 <some-python-script.py>" to execute python
scripts on Windows using different Python versions.
[1]
https://stackoverflow.com/questions/3809314/how-to-install-both-python-2-x-and-python-3-x-in-windows-7
|