Skip to content

Commit d89c20b

Browse files
committed
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 <[email protected]>
1 parent 55fb26b commit d89c20b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: python
22

3+
os: linux
34
dist: xenial
4-
sudo: false
55

66
python:
77
- 3.6
@@ -16,14 +16,14 @@ services:
1616
- postgresql
1717

1818
env:
19-
matrix:
19+
jobs:
2020
- PW_TEST_DB_TYPE=postgres PW_TEST_DB_USER=postgres
2121
- PW_TEST_DB_TYPE=mysql PW_TEST_DB_USER=root
2222
global:
2323
- PW_TEST_DB_PASS=""
2424
- PW_TEST_DB_HOST="localhost"
2525

26-
matrix:
26+
jobs:
2727
include:
2828
- addons:
2929
mariadb: 10.3

0 commit comments

Comments
 (0)