diff options
author | Chad Smith <chad.smith@canonical.com> | 2019-11-12 16:10:30 -0700 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2019-11-12 16:10:30 -0700 |
commit | 21967a2dedc781e05cf62c80fb730d0ed5973c8b (patch) | |
tree | c862a885f5848d8b02f2ef7c43dca346560faa51 | |
parent | 92cc71dec8da73bf43d345418b73db1a32a6b8b9 (diff) | |
download | vyos-cloud-init-21967a2dedc781e05cf62c80fb730d0ed5973c8b.tar.gz vyos-cloud-init-21967a2dedc781e05cf62c80fb730d0ed5973c8b.zip |
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 |