2015-07-17 17:56:06 +02:00
|
|
|
language: python
|
2017-03-04 14:34:57 +01:00
|
|
|
sudo: false
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
python: 3.4
|
|
|
|
- os: linux
|
|
|
|
python: 3.5
|
|
|
|
- os: linux
|
|
|
|
python: 3.6
|
|
|
|
- os: osx
|
|
|
|
language: generic
|
2015-07-17 17:56:06 +02:00
|
|
|
|
2017-03-04 14:34:57 +01:00
|
|
|
before_install:
|
2018-11-05 10:52:05 +00:00
|
|
|
- |
|
|
|
|
if [ "${TRAVIS_OS_NAME}" == osx ]; then
|
|
|
|
rm '/usr/local/include/c++'
|
|
|
|
brew install python3 ||
|
|
|
|
brew upgrade python3
|
|
|
|
fi
|
2018-05-13 13:35:17 +02:00
|
|
|
- pip3 install --upgrade six
|
2015-07-17 17:56:06 +02:00
|
|
|
|
2016-04-10 11:13:54 +02:00
|
|
|
install:
|
2018-04-20 14:57:35 +02:00
|
|
|
- pip3 install --upgrade --editable .[test,md5,bcrypt]
|
2016-04-10 11:13:54 +02:00
|
|
|
|
2016-05-12 19:24:24 +02:00
|
|
|
script:
|
2017-06-21 09:49:03 +02:00
|
|
|
- python3 setup.py test
|