2015-07-17 17:56:06 +02:00
|
|
|
language: python
|
2020-01-13 09:29:24 +01:00
|
|
|
env: PYTHON=python3
|
2017-03-04 14:34:57 +01:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
2020-01-13 09:29:24 +01:00
|
|
|
- name: "Python 3.5 on Linux"
|
|
|
|
os: linux
|
2017-03-04 14:34:57 +01:00
|
|
|
python: 3.5
|
2020-01-13 09:29:24 +01:00
|
|
|
- name: "Python 3.6 on Linux"
|
|
|
|
os: linux
|
2017-03-04 14:34:57 +01:00
|
|
|
python: 3.6
|
2020-01-13 09:29:24 +01:00
|
|
|
- name: "Python 3.7 on Linux"
|
|
|
|
os: linux
|
2019-06-15 10:01:20 +02:00
|
|
|
python: 3.7
|
2020-01-13 09:29:24 +01:00
|
|
|
- name: "Python 3.8 on Linux"
|
|
|
|
os: linux
|
|
|
|
python: 3.8
|
|
|
|
- name: "Python 3 on macOS"
|
|
|
|
os: osx
|
|
|
|
language: shell
|
|
|
|
- name: "Python 3.8 on Windows"
|
|
|
|
os: windows
|
|
|
|
language: shell
|
|
|
|
before_install:
|
|
|
|
- choco install python --version 3.8
|
|
|
|
- python -m pip install --upgrade pip
|
|
|
|
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH PYTHON=python
|
2015-07-17 17:56:06 +02:00
|
|
|
|
2018-09-09 17:28:01 +02:00
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
- https://coveralls.io/webhook?repo_token=COVERALLS_REPO_TOKEN
|
|
|
|
|
2016-04-10 11:13:54 +02:00
|
|
|
install:
|
2020-01-13 09:29:24 +01:00
|
|
|
- ${PYTHON} --version
|
|
|
|
- ${PYTHON} -m pip install --upgrade coveralls
|
|
|
|
- ${PYTHON} -m pip install --upgrade --editable .[test,md5,bcrypt]
|
2020-01-13 09:59:03 +01:00
|
|
|
- ${PYTHON} -m pip list
|
2016-04-10 11:13:54 +02:00
|
|
|
|
2016-05-12 19:24:24 +02:00
|
|
|
script:
|
2018-09-05 11:30:24 +02:00
|
|
|
- ${PYTHON} setup.py test
|
2018-09-08 14:42:22 +02:00
|
|
|
|
|
|
|
after_success:
|
2020-01-13 09:29:24 +01:00
|
|
|
- env COVERALLS_PARALLEL=true ${PYTHON} -m coveralls
|