diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-02-08 20:01:23 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-02-08 20:01:23 (GMT) |
commit | fe92c441519d0c4fc93bb98fc1bb4e225dea44c4 (patch) | |
tree | e0661e74d543f64c1a48267121e0323167df4a64 | |
parent | 7f95c8c319c1ee593b130d0eb1d4947d9d7e008a (diff) | |
download | cpython-fe92c441519d0c4fc93bb98fc1bb4e225dea44c4.zip cpython-fe92c441519d0c4fc93bb98fc1bb4e225dea44c4.tar.gz cpython-fe92c441519d0c4fc93bb98fc1bb4e225dea44c4.tar.bz2 |
bpo-32802: Fix Travis build (GH-5589) (GH-5591)
Fix bug in travis configuration where it did not run the tests when
a change includes both code and doc changes.
(cherry picked from commit 32921f90821ab54ffb757b7e996e5b7a71fac25e)
Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index d568534..222d6f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -80,7 +80,7 @@ before_script: echo "Files changed: " echo $files_changed - if ! echo $files_changed | grep -qvE '(\.rst$)|(^Doc)|(^Misc)' + if ! echo "$files_changed" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)' then echo "Only docs were updated, stopping build process." exit |