I've just finished going through the oracle tests and sent you a pull request that fixes a few issues:
* compiler.py still had a map(None) call, that I replaced with izip_longest. * cx_Oracle doesn't seem to want to accept bools as bind parameters with Python 3; these had to be converted to ints. * we were calling iterator.next() in one place instead of next(iterator) * a couple of tests (one of which is specifically an Oracle test) needed minor updates The biggest change was just adding izip_longest to utils.py3 and utils.itercompat. With these changes, I'm not seeing any failures with oracle that I'm not also seeing with sqlite3. I am seeing a bunch of failures, though. FAILED (failures=17, errors=24, skipped=97, expected failures=2, unexpected successes=1) Most of the failures are coming from the timezones tests. Also, one rather obnoxious failure that I encountered was the file_uploads.FileUploadTests.test_large_upload test, which doesn't actually fail but just hangs indefinitely. I had to skip the test in order to run the full suite. Cheers, Ian -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.