From e9ab1235eb3944ede588188592a1aa1aaae02591 Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Thu, 23 Apr 2020 16:16:00 -0400 Subject: .travis.yml: don't run integration test on ubuntu/* branches (#321) The integration test doesn't work against the ubuntu/* branches because it uses the tooling designed to work against master. This means that ubuntu/* branches always report failures in Travis, which doesn't give us any signal. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bdec7b10..6b20abe8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,8 @@ matrix: env: TOXENV=py3 PYTEST_ADDOPTS=-v # List all tests run by pytest - - install: + - if: NOT branch =~ /^ubuntu\// + install: - git fetch --unshallow - sudo apt-get build-dep -y cloud-init - sudo apt-get install -y --install-recommends sbuild ubuntu-dev-tools fakeroot tox -- cgit v1.2.3