diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-05-29 14:35:32 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-05-29 14:36:26 -0700 |
commit | 0bf3fa458deffe1306f226a7257ceda927ca9e8e (patch) | |
tree | f0ebaa4b1b1517fdb492cc257bb577efe98433e7 /.travis.yml | |
parent | 7f2c35052183b400827d9949a68b41c90f90a32d (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 4316bd9f..16d33b76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,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 |