diff options
author | Ryan Harper <ryan.harper@canonical.com> | 2019-11-13 09:55:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-13 09:55:20 -0800 |
commit | 6214a57ede3bf0bc098b9c2827f61225a9498f33 (patch) | |
tree | a5172d2a3a461a69f26f829473fc0b3126a4e664 | |
parent | a533ce570e88315e5d720109db670ed92c7b1bcf (diff) | |
parent | 21967a2dedc781e05cf62c80fb730d0ed5973c8b (diff) | |
download | vyos-cloud-init-6214a57ede3bf0bc098b9c2827f61225a9498f33.tar.gz vyos-cloud-init-6214a57ede3bf0bc098b9c2827f61225a9498f33.zip |
Merge pull request #38 from blackboxsw/cleanup/run-ci-on-pull-request
travis: only run CI on pull requests
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 834a5681..fba00571 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - pip install tox script: - - tox + - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then tox; fi' matrix: fast_finish: true |