summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2020-04-18 13:21:13 +0100
committerStephen Finucane <stephen@that.guru>2020-04-18 13:23:28 +0100
commitd89c20b8072b646adc0cb9cc74c9678fc65039d4 (patch)
tree15d82cf145bcd503f907bcf1ec0e7c8a80dbb8d9
parent55fb26bf5bb3ca81ae35426efa9b2410e206c8b2 (diff)
downloadpatchwork-d89c20b8072b646adc0cb9cc74c9678fc65039d4.tar
patchwork-d89c20b8072b646adc0cb9cc74c9678fc65039d4.tar.gz
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 <stephen@that.guru>
-rw-r--r--.travis.yml6
1 files 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