diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-05-29 14:35:32 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 15:32:38 -0700 |
commit | 174daa3b95411ed6c72cfbc9f8d320d7b45a440e (patch) | |
tree | 8e74aff94de615a691876251822a972600a9f11c /.travis.yml | |
parent | 78b3520e9b78b0cefab37ba96bef00af6b996c4b (diff) |
Modernize travis/dev-reqs/etc re: blackening
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c4ccb74d..8949eb02 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,10 @@ install: - pip install codecov # For codecov specifically - pip install -r dev-requirements.txt script: - # flake8 is now possible! + # Fast syntax check failures for more rapid feedback to submitters + # (Travis-oriented metatask that version checks Python, installs, runs.) + - inv travis.blacken + # I have this in my git pre-push hook, but contributors probably don't - flake8 # All (including slow) tests, w/ coverage! - inv coverage |