Django

63 readers
1 users here now

Django Web Framework and related discussions

founded 2 years ago
MODERATORS
1
2
obey the testing goat! (www.obeythetestinggoat.com)
submitted 2 years ago by Nomad to c/django
 
 

Just started reading and I am already planning to switch over to extreme test driven development. We don't test nearly enough.

Whats your preferred development strategy? And comparably good sources you would recomment?

2
1
do you know hypothesis / quickcheck? (hypothesis.readthedocs.io)
submitted 2 years ago by Nomad to c/django
 
 

We use this primarily for input generation for dialog tests.

Its a quickcheck implementation and found us quite alot of "weird" bugs. Like a not-exactly matching encoding of database and application.

Now we gained clean utf smileys in text fields m)

Highly recommend it.

3
1
submitted 2 years ago by Nomad to c/django
 
 

This post is a little older, but I was surprised how many packages are timeless allstars. I use all of them except for

  • cors headers
  • extensions
  • storages
  • pytest
  • environ

Which do you use? And for what reasons? For example I need to look into pytest and determinw whats better about that than the natively used test framework.

First post in the new community,

Cheers!