Changes between Version 6 and Version 7 of CI


Ignore:
Timestamp:
Feb 6, 2015, 2:28:32 PM (10 years ago)
Author:
Tim Graham
Comment:

Added isort pull request builder

Legend:

Unmodified
Added
Removed
Modified
  • CI

    v6 v7  
    1818== Other checks ==
    1919
    20 Two builders run on all pull requests:
     20Three builders run on all pull requests:
    2121* [http://djangoci.com/job/flake8/ flake8] - runs the equivalent of `flake8` from the root checkout directory and fails if there are any warnings
    2222* [http://djangoci.com/job/docs/ docs] - runs the equivalent of `make spelling` from the docs directory and fails if there are any spelling or sphinx errors.
     23* [http://djangoci.com/job/isort/ isort] - runs `isort --recursive --check-only .` from the root checkout directory and fails if any imports aren't [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#imports sorted properly].
    2324
    2425== Troubleshooting ==
Back to Top