Skip to content

Commit

Permalink
New Travis configuration:
Browse files Browse the repository at this point in the history
  - move to Xenial distro
  - drop PostgreSQL-9.4
  - install Py3 packages
  - do not crash in s3_update_check.py if optional package is broken
    (boto broken on Xenial)
  - disable some optional requirements (for CI only) that don't work for
    Py-3.5 on Xenial due to version incompatibilities (e.g. tweepy)
  - update modules/pyparsing.py to Py2/3 hybrid
  - prepare for Py-2.7/3.5 hybrid testing
  • Loading branch information
nursix committed Jul 8, 2019
1 parent c795d48 commit 8a4a0c1
Show file tree
Hide file tree
Showing 8 changed files with 6,768 additions and 3,783 deletions.
18 changes: 10 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
dist: trusty
dist: xenial
sudo: false

language: python

# currently only testing for python 2.7
python:
- "2.7"
#- "3.5"

# This tests against all the versions of DB supported by Eden
env:
- DB=mysql
- DB=sqlite3
- DB=postgres-9.4
- DB=postgres-9.4+postgis
- DB=postgres-9.6
- DB=postgres-9.6+postgis
- DB=mysql
- DB=sqlite3
- DB=postgres-9.6
- DB=postgres-9.6+postgis

virtualenv:
system_site_packages: true

services:
- mysql
- postgresql

# Uncomment below to only test the master branch
# branches:
# only:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nursix-dev-2960-g1d8919f (2019-07-08 19:57:37)
nursix-dev-2961-gc795d48 (2019-07-08 23:31:20)
Loading

0 comments on commit 8a4a0c1

Please sign in to comment.