that test is flawed, ill tell you why. what it needs is a binary file. so i said, OK, lets use a .pyc file. the thing is, if you modify sql.py and then run the test, the test will fail since sql.pyc gets wiped. then when you run the test again, it works fine, because sql.pyc is there.
so basically, that test will fail upon checkout every time, and then work for subsequent runs. exactly what you dont want for a buildbot. the real change needed is that we create a little binary file and just check it in to the test directory as a "data" file, that is independent from the build, and use that as the target for that test. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlalchemy -~----------~----~----~----~------~----~------~--~---
