mirror of
https://github.com/coleifer/peewee.git
synced 2026-05-06 07:56:41 -04:00
82c613833e
Allow cockroachdb to expose nested transaction APIs. Requires cockroachdb version 20.1 or newer.
62 lines
1.8 KiB
YAML
62 lines
1.8 KiB
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
env:
|
|
- PEEWEE_TEST_BACKEND=sqlite
|
|
- PEEWEE_TEST_BACKEND=postgresql
|
|
- PEEWEE_TEST_BACKEND=mysql
|
|
matrix:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial
|
|
env: PEEWEE_TEST_BACKEND=sqlite
|
|
- python: 3.7
|
|
dist: xenial
|
|
env: PEEWEE_TEST_BACKEND=postgresql
|
|
- python: 3.7
|
|
dist: xenial
|
|
env: PEEWEE_TEST_BACKEND=mysql
|
|
- python: 3.8
|
|
dist: xenial
|
|
- python: 3.7
|
|
dist: xenial
|
|
env:
|
|
- PEEWEE_TEST_BUILD_SQLITE=1
|
|
- PEEWEE_CLOSURE_EXTENSION=/usr/local/lib/closure.so
|
|
- LSM_EXTENSION=/usr/local/lib/lsm.so
|
|
before_install:
|
|
- sudo apt-get install -y tcl-dev
|
|
- ./.travis_deps.sh
|
|
- sudo ldconfig
|
|
script: "python runtests.py -v2"
|
|
- python: 3.7
|
|
dist: xenial
|
|
env:
|
|
- PEEWEE_TEST_BACKEND=cockroachdb
|
|
before_install:
|
|
- wget -qO- https://binaries.cockroachdb.com/cockroach-v20.1.1.linux-amd64.tgz | tar xvz
|
|
- ./cockroach-v20.1.1.linux-amd64/cockroach start --insecure --background
|
|
- ./cockroach-v20.1.1.linux-amd64/cockroach sql --insecure -e 'create database peewee_test;'
|
|
allow_failures:
|
|
addons:
|
|
postgresql: "9.6"
|
|
mariadb: "10.3"
|
|
services:
|
|
- postgresql
|
|
- mariadb
|
|
install: "pip install psycopg2-binary Cython pymysql apsw mysql-connector"
|
|
before_script:
|
|
- python setup.py build_ext -i
|
|
- psql -c 'drop database if exists peewee_test;' -U postgres
|
|
- psql -c 'create database peewee_test;' -U postgres
|
|
- psql peewee_test -c 'create extension hstore;' -U postgres
|
|
- mysql -e 'drop user if exists travis@localhost;'
|
|
- mysql -e 'create user travis@localhost;'
|
|
- mysql -e 'drop database if exists peewee_test;'
|
|
- mysql -e 'create database peewee_test;'
|
|
- mysql -e 'grant all on *.* to travis@localhost;' || true
|
|
script: "python runtests.py"
|