workaround for python 3.6s behaviour with BEGIN EXCLUSIVE in sqlite

This commit is contained in:
Mike Fährmann
2017-01-11 00:17:02 +01:00
parent 8780abcc77
commit 989820d719
3 changed files with 14 additions and 8 deletions

View File

@@ -1,11 +1,14 @@
sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- 3.3
- 3.4
- 3.5
- 3.6
install:
- pip install -r requirements.txt
script:
- if [[ $TRAVIS_PYTHON_VERSION != '3.3' ]]; then nosetests --ignore-files=test_extractors --verbose test; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then nosetests --verbose test; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.6' ]]; then nosetests --ignore-files=test_extractors --verbose test; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then nosetests --verbose test; fi
git:
depth: 10