You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lint.sh 229B

1234567
  1. #!/usr/bin/env bash
  2. #
  3. # Run static analysis of the codebase
  4. #
  5. # This is run on Travis to ensure that pull requests conform to the project coding standards.
  6. flake8 src/oscar/ || exit $?
  7. isort -q --recursive --diff src/ || exit $?