From d89c20b8072b646adc0cb9cc74c9678fc65039d4 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sat, 18 Apr 2020 13:21:13 +0100 Subject: travis: Resolve warnings, info messages from Travis The following were reported by Travis' build config validation: - root: deprecated key 'sudo' (The key `sudo` has no effect anymore.) - env: key 'matrix' is an alias for 'jobs', using 'jobs' - root: key 'matrix' is an alias for 'jobs', using 'jobs' - root: missing 'os', using the default 'linux' Resolve all of the above. Signed-off-by: Stephen Finucane --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5f15f59..50b87a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: python +os: linux dist: xenial -sudo: false python: - 3.6 @@ -16,14 +16,14 @@ services: - postgresql env: - matrix: + jobs: - PW_TEST_DB_TYPE=postgres PW_TEST_DB_USER=postgres - PW_TEST_DB_TYPE=mysql PW_TEST_DB_USER=root global: - PW_TEST_DB_PASS="" - PW_TEST_DB_HOST="localhost" -matrix: +jobs: include: - addons: mariadb: 10.3 -- cgit v1.2.3