1. 12 Haz, 2015 1 kayıt (commit)
  2. 05 Haz, 2015 1 kayıt (commit)
    • Shai Berger's avatar
      Cleanup: Removed the try-except-fail antipattern from tests · 071801cc
      Shai Berger yazdı
      Found cases where testing code was doing
      
          try:
              whatever
          except (some excption type):
              self.fail("exception shouldn't be thrown")
      
      replaced it with just
      
          whatever
      
      as this makes the unexpected errors easier to debug, and the tests
      would fail just as much and aren't rendered less readable.
      
      Thanks Markus Holtermann for review
      071801cc
  3. 07 Nis, 2015 1 kayıt (commit)
  4. 25 Mar, 2015 1 kayıt (commit)
  5. 23 Şub, 2015 1 kayıt (commit)
  6. 06 Şub, 2015 1 kayıt (commit)
  7. 24 Kas, 2014 1 kayıt (commit)
  8. 30 Eki, 2014 1 kayıt (commit)
  9. 21 Mar, 2014 2 kayıt (commit)
  10. 20 Şub, 2014 1 kayıt (commit)
  11. 03 Ock, 2014 1 kayıt (commit)
  12. 17 Ara, 2013 1 kayıt (commit)
    • Aymeric Augustin's avatar
      Removed superfluous models.py files. · 6e895f9e
      Aymeric Augustin yazdı
      Added comments in the three empty models.py files that are still needed.
      
      Adjusted the test runner to add applications corresponding to test
      labels to INSTALLED_APPS even when they don't have a models module.
      6e895f9e
  13. 02 Kas, 2013 1 kayıt (commit)
  14. 27 Eki, 2013 1 kayıt (commit)
  15. 19 Eki, 2013 1 kayıt (commit)
  16. 18 Eki, 2013 1 kayıt (commit)
  17. 14 Eki, 2013 1 kayıt (commit)
  18. 11 Eki, 2013 1 kayıt (commit)
  19. 02 Eki, 2013 1 kayıt (commit)
  20. 09 Eyl, 2013 2 kayıt (commit)
  21. 06 Eyl, 2013 1 kayıt (commit)
    • Christopher Adams's avatar
      Fixed #11857 -- Added missing 'closed' property on TemporaryFile class. · b2f5ac16
      Christopher Adams yazdı
      - TemporaryFile now minimally mocks the API of the Python standard
        library class tempfile.NamedTemporaryFile to avoid AttributeError
        exceptions.
      - The symbol django.core.files.NamedTemporaryFile is actually assigned
        as a different class on different operating systems.
      - The bug only occurred if Django is running on Windows, hence why it
        was hard to diagnose.
      b2f5ac16
  22. 29 Tem, 2013 1 kayıt (commit)
  23. 01 Tem, 2013 1 kayıt (commit)
  24. 20 Haz, 2013 1 kayıt (commit)
  25. 26 Şub, 2013 1 kayıt (commit)