Skip to content

Commit c919573

Browse files
committed
ci: Test on Python 3.7-dev.
1 parent 2ad7c4c commit c919573

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.ci/appveyor.yml

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ environment:
1717
- PYTHON: "C:\\Python36\\python.exe"
1818
- PYTHON: "C:\\Python36-x64\\python.exe"
1919

20+
branches:
21+
# Avoid building PR branches.
22+
only:
23+
- master
24+
- ci
25+
- releases
26+
2027
install:
2128
- "%PYTHON% -m pip install --upgrade pip wheel setuptools"
2229
- "%PYTHON% -m pip install -r .ci/requirements-win.txt"

.travis.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ env:
1818

1919
- DOCS_PUSH_KEY_LABEL=0760b951e99c
2020

21+
branches:
22+
# Avoid building PR branches.
23+
only:
24+
- master
25+
- ci
26+
- releases
27+
2128
matrix:
2229
fast_finish: true
2330

@@ -96,7 +103,17 @@ matrix:
96103
dist: trusty
97104
sudo: false
98105
language: python
99-
python: "3.6-dev"
106+
python: "3.6"
107+
services: postgresql
108+
env: BUILD=tests PGVERSION=9.6
109+
addons:
110+
postgresql: '9.6'
111+
112+
- os: linux
113+
dist: trusty
114+
sudo: false
115+
language: python
116+
python: "3.7-dev"
100117
services: postgresql
101118
env: BUILD=tests PGVERSION=9.6
102119
addons:

0 commit comments

Comments
 (0)