Skip to content
  1. Mar 15, 2013
  2. Mar 09, 2013
  3. Feb 14, 2013
  4. Feb 12, 2013
  5. Feb 08, 2013
  6. Feb 07, 2013
  7. Dec 19, 2012
  8. Dec 06, 2012
  9. Nov 24, 2012
    • Laurent Bachelier's avatar
      Use flake8 if available instead of pyflakes · 541d080c
      Laurent Bachelier authored
      With flake8, we can check for more issues and ignore those who are not
      real issues.
      
      This allowed me to find genuine errors in:
      - modules/boursorama/pages/account_history.py
      - modules/ing/pages/login.py
      - weboob/tools/application/qt/qt.py
      I left one in weboob/tools/browser/browser.py for the time being.
      
      Some PEP8 fixes on other files.
      541d080c
  10. Nov 11, 2012
  11. Nov 10, 2012
  12. Oct 27, 2012
  13. Apr 27, 2012
  14. Apr 10, 2012
  15. Mar 27, 2012
  16. Mar 14, 2012
    • Laurent Bachelier's avatar
      Remove *.pyc before running tests · 3a68fc61
      Laurent Bachelier authored
      3a68fc61
    • Laurent Bachelier's avatar
      PEP8 style fixes and other small style fixes · 006e97a8
      Laurent Bachelier authored
      I used autopep8 on some files and did carefully check the changes.
      I ignored E501,E302,E231,E225,E222,E221,E241,E203 in my search, and at
      least E501 on any autopep8 run.
      
      Other style fixes not related to PEP8:
      * Only use new-style classes. I don't think the usage of old-style
        classes was voluntary. Old-style classes are removed in Python 3.
      * Convert an if/else to a one-liner in mediawiki, change docstring style
        change to a comment something that wasn't really appropriate for a
        docstring.
      * Unneeded first if condition in meteofrance
      006e97a8
  17. Mar 13, 2012
  18. Mar 03, 2012
  19. Feb 28, 2012
  20. Feb 12, 2012
  21. Feb 06, 2012
  22. Jan 30, 2012
  23. Jan 27, 2012
  24. Jan 18, 2012
  25. Jan 17, 2012
    • Laurent Bachelier's avatar
      Run tests with only the source modules · eef7a717
      Laurent Bachelier authored
      It will use a temporary directory.
      It reads the WEBOOB_WORKDIR variable if you want a different backends
      file.
      It sets sources.list by itself.
      The temporary directory is removed if possible.
      It is still possible to test only one backend.
      eef7a717