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.
| 1234567 |
- #!/usr/bin/env bash
- #
- # Run static analysis of the codebase
- #
- # This is run on Travis to ensure that pull requests conform to the project coding standards.
- flake8 src/oscar/ || exit $?
- isort -q --recursive --diff src/ || exit $?
|