vendredi 24 juillet 2015

Is there a way to see exception message in unit test during unit test?

When I get 500 status code instead of 200 in my test

   responce = requests.post(url)
   self.assertEqual(responce.status_code, 200)

I see this message in my console

self.assertEqual(responce.status_code, 200)
AssertionError: 500 != 200

Everyting is fine, but I want to see more information about what actualy happens. I mean django exception like ViewDoesNotExist or other types of the django exceptions that appear in debug page. Can I somehow put this information in my terminal during test process?

Aucun commentaire:

Enregistrer un commentaire