Fábio Santos

Results 321 comments of Fábio Santos

You might want to pin that version, as I had to revert the feature due to issues. I might try to do it again sometime, but for now it's out.

Hey there! I feel partially responsible, as I posted an issue that was fixed by removing case insensitive searches. https://github.com/SoftwareBrothers/adminjs-sequelizejs/issues/65

Maybe add an argument to toString much like Number's toString? 1.0n..toString(4) gives us 4 decimal places. 1.0n..toString(0) returns no decimal places.

I propose we just use `n`. It would be easier to remember, and also to learn "when a number has an n at the end it's not a float, it's...

@zvictor I'm experiencing that behavior. Models in tests.py will work if I do `manage.py test app`, but not on "full" tests (`manage.py test`).

Is a plugin really the best option, seeing that this is just plain incorrect behaviour? I think, test models are mostly important for reusable apps. Should reusable apps' tests suites...

Nose is being inconsistent right now. Run tests one way, you get one effect. Run tests the other, you get a different effect. Both manners of running tests should yield...

I get your point now. I'm not trying to say that this is an upstream issue from nose. I fear I've used the name "nose" instead of "django-nose". I apologize...

This is the docstring of loadTestsFromDir: ``` """Load tests from the directory at path. This is a generator -- each suite of tests from a module or other file is...

I've made a pull request [https://github.com/jbalogh/django-nose/pull/111](https://github.com/jbalogh/django-nose/pull/111) to fix this. If anyone could try it out and give feedback as to whether it fixes their tests, it would help integration.