forked from ckan/ckanext-scheming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
91 lines (80 loc) · 2.13 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
os: linux
dist: focal
language: python
services:
- docker
- redis
install: bash bin/travis-build.bash
script: bash bin/travis-run.bash
stages:
- Flake8
- Tests
jobs:
include:
- stage: Flake8
python: 3.6
env: FLAKE8=True
install:
- pip install flake8==3.5.0
- pip install pycodestyle==2.3.0
script:
- flake8 --version
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics --exclude ckan
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --max-line-length=127 --statistics --exclude ckan --exit-zero
# - stage: Tests
# python: "3.6"
# env: CKANVERSION=master
# services:
# - postgresql
# - redis
# - docker
- stage: Tests
python: "2.7"
env: CKANVERSION=2.9
addons:
postgresql: '12'
apt:
packages:
- postgresql-12
- postgresql-client-12
- python: "3.6"
env: CKANVERSION=2.9
addons:
postgresql: '12'
apt:
packages:
- postgresql-12
- postgresql-client-12
- python: "2.7"
env: CKANVERSION=2.8
addons:
postgresql: '11'
apt:
sources:
- sourceline: 'deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main'
packages:
- postgresql-11
# - python: "2.7"
# env: CKANVERSION=2.7
# addons:
# postgresql: '9.6'
# apt:
# sources:
# - sourceline: 'deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main'
# packages:
# - postgresql-9.6
#
# - python: "2.7"
# env: CKANVERSION=2.6
# addons:
# postgresql: '9.6'
# apt:
# sources:
# - sourceline: 'deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main'
# packages:
# - postgresql-9.6
cache:
directories:
- $HOME/.cache/pip