diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2018-02-08 19:14:59 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-02-08 19:14:59 (GMT) |
commit | 32921f90821ab54ffb757b7e996e5b7a71fac25e (patch) | |
tree | 40fcfe076791273d06094f8348b9563ba072018c /.travis.yml | |
parent | fc1ce810f1da593648b4d19e7d582a235ec1dd37 (diff) | |
download | cpython-32921f90821ab54ffb757b7e996e5b7a71fac25e.zip cpython-32921f90821ab54ffb757b7e996e5b7a71fac25e.tar.gz cpython-32921f90821ab54ffb757b7e996e5b7a71fac25e.tar.bz2 |
bpo-32802: Fix Travis build (GH-5589)
Fix bug in travis configuration where it did not run the tests when
a change includes both code and doc changes.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index d7387e5..98d6b9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -97,7 +97,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 |