Jeff Balogh

Results 8 comments of Jeff Balogh

This definitely seems faster! Thanks! I'm still seeing hangs when I have an example that doesn't parse, which is presumably generating a ton of nodes that were explored and backtracked...

`caseInsensitive` is fantastic! Clicking around my examples feels much more responsive (even on Chrome) which is understandable since the trees are smaller. You're missing an implementation of `_isNullable` though. All...

Detecting tablets seems good to me. For the current versions of amo, the desktop site is preferable to the mobile site on tablets.

Do you have an `__init__.py` in my_project/apps? nose won't recurse further into directories if they don't look like Python packages.

nose behaves a bit diferent than Django. It doesn't know about INSTALLED_APPS, it just knows about the python import path. If it's possible for you to do `./manage.py shell` and...

The root cause is that django-nose runs database setup in a nose plugin's begin method, and that happens before tests get collected. Your tests.py files haven't been imported so the...

Can you go into more detail about what is changed by django-nose? It used to match Django's test runner.

Is there a better way to provide passwords in scripts?