-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Axel DEROMBLAY
committed
Jun 27, 2019
1 parent
ce88e3b
commit 86c063f
Showing
1 changed file
with
71 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,84 @@ | ||
language: python | ||
|
||
# Declare all os and version of python to be tested | ||
# The section before install is os specific | ||
matrix: | ||
include: | ||
# Use the built in venv for linux builds | ||
- os: linux | ||
python: "2.7" | ||
|
||
- os: linux | ||
python: "3.5" | ||
|
||
- os: linux | ||
python: "3.6" | ||
|
||
# Use generic language for osx | ||
- os: osx | ||
language: generic | ||
python: "2.7" | ||
before_install: | ||
- brew update | ||
- brew install libomp | ||
- brew upgrade pyenv | ||
- brew install pyenv-virtualenv | ||
- pyenv install 2.7.15 | ||
- eval "$(pyenv init -)" | ||
- pyenv virtualenv 2.7.15 venv | ||
- pyenv activate venv | ||
|
||
- os: osx | ||
language: generic | ||
python: "3.5" | ||
before_install: | ||
- brew update | ||
- brew install libomp | ||
- brew upgrade pyenv | ||
- brew install pyenv-virtualenv | ||
- pyenv install 3.5.6 | ||
- eval "$(pyenv init -)" | ||
- pyenv virtualenv 3.5.6 venv | ||
- pyenv activate venv | ||
|
||
- os: osx | ||
language: generic | ||
python: "3.6" | ||
before_install: | ||
- brew update | ||
- brew install libomp | ||
- brew upgrade pyenv | ||
- brew install pyenv-virtualenv | ||
- pyenv install 3.6.7 | ||
- eval "$(pyenv init -)" | ||
- pyenv virtualenv 3.6.7 venv | ||
- pyenv activate venv | ||
|
||
# Use sh language for windows | ||
- os: windows | ||
language: sh | ||
python: "3.5" | ||
before_install: | ||
- choco install python --version 3.5.4 | ||
- export PATH="/c/Python35:/c/Python35/Scripts:$PATH" | ||
|
||
- os: windows | ||
language: sh | ||
python: "3.6" | ||
before_install: | ||
- choco install python --version 3.6.7 | ||
- export PATH="/c/Python36:/c/Python36/Scripts:$PATH" | ||
|
||
# Common steps to all os | ||
include: | ||
- os: linux | ||
python: '2.7' | ||
- os: linux | ||
python: '3.5' | ||
- os: linux | ||
python: '3.6' | ||
- os: osx | ||
language: generic | ||
python: '2.7' | ||
before_install: | ||
- brew update | ||
- brew install libomp | ||
- brew upgrade pyenv | ||
- brew install pyenv-virtualenv | ||
- pyenv install 2.7.15 | ||
- eval "$(pyenv init -)" | ||
- pyenv virtualenv 2.7.15 venv | ||
- pyenv activate venv | ||
- os: osx | ||
language: generic | ||
python: '3.5' | ||
before_install: | ||
- brew update | ||
- brew install libomp | ||
- brew upgrade pyenv | ||
- brew install pyenv-virtualenv | ||
- pyenv install 3.5.6 | ||
- eval "$(pyenv init -)" | ||
- pyenv virtualenv 3.5.6 venv | ||
- pyenv activate venv | ||
- os: osx | ||
language: generic | ||
python: '3.6' | ||
before_install: | ||
- brew update | ||
- brew install libomp | ||
- brew upgrade pyenv | ||
- brew install pyenv-virtualenv | ||
- pyenv install 3.6.7 | ||
- eval "$(pyenv init -)" | ||
- pyenv virtualenv 3.6.7 venv | ||
- pyenv activate venv | ||
- os: windows | ||
language: sh | ||
python: '3.5' | ||
before_install: | ||
- choco install python --version 3.5.4 | ||
- export PATH="/c/Python35:/c/Python35/Scripts:$PATH" | ||
- os: windows | ||
language: sh | ||
python: '3.6' | ||
before_install: | ||
- choco install python --version 3.6.7 | ||
- export PATH="/c/Python36:/c/Python36/Scripts:$PATH" | ||
install: | ||
- pip install coverage | ||
- pip install codecov | ||
- pip install -U pytest | ||
- pip install --upgrade setuptools wheel | ||
|
||
# Install mlbox and run the tests | ||
- pip install coverage | ||
- pip install codecov | ||
- pip install -U pytest | ||
- pip install --upgrade setuptools wheel | ||
script: | ||
- python setup.py install | ||
- cd tests | ||
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$TRAVIS_PYTHON_VERSION" = "3.6" ] ; then coverage run -m --source=../mlbox/ pytest; fi | ||
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$TRAVIS_PYTHON_VERSION" != "3.6" ] ; then pytest; fi | ||
- if [ "$TRAVIS_OS_NAME" = "osx" ] ; then pytest; fi | ||
- if [ "$TRAVIS_OS_NAME" = "windows" ] ; then pytest; fi | ||
- cd .. | ||
|
||
- python setup.py install | ||
- cd tests | ||
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$TRAVIS_PYTHON_VERSION" = "3.6" ] ; then | ||
coverage run -m --source=../mlbox/ pytest; fi | ||
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$TRAVIS_PYTHON_VERSION" != "3.6" ] ; then | ||
pytest; fi | ||
- if [ "$TRAVIS_OS_NAME" = "osx" ] ; then pytest; fi | ||
- if [ "$TRAVIS_OS_NAME" = "windows" ] ; then pytest; fi | ||
- cd .. | ||
after_success: | ||
- codecov | ||
|
||
- codecov | ||
deploy: | ||
provider: pypi | ||
user: AxeldeRomblay | ||
password: | ||
secure: YiAp2gnE2SiBQQZ4gbWEJrFl+Jo381e07viF9Lgo30+mjnCEpMilAZpCl9MuzslOkXyFCv/U9JNnj9+yGtMcxJQE+82E3eoqupgoMQeGZuWIMN9cRNemxZWgOAwrzslfqEYWvMVdNzIayFYAw6HUgmNI5sHiefX2JjFA7Y0MYlL0SZBjeqUESqpjTHIS0nRTCKpv77XKo/SASJsqkpYg8OgnYgKWKvxpols/bZDwmAwy2j0izuyNAY9ASJx5awg9x/bJnn7IzvO8w+j/iQTQjs5CIa1NBW77Naqplxk1rlivIO3+3rT4QJG+xRacJHa1vLInATCcUVpbhzk/NbOPUxLXpxX6XUPDhUysR1sQbaYBbBOdLOnTAmKBv5WozLzXDUxO/3xwUNUB5+JhMikjOWiwA6Q9pJ7q/nsDMRoTcXrjN/jqMDMQ+CU7h7QBIZFoekDO2hEmWRkcgndbgzPcaTmX8AnjoZCvayYvdge47199feXkTUv+Gx68kInYuj+p3m6He36tJegCnsiAdc2eOzbPswt7/KVBbvbIfRaRj+5LtH69ozn1xpEJJOisiJnF9y0ysB00U4B4bE1kGGmxQeMI6f8Gp33wzvYYUrmB+5AESBzr7Mk4Yfc0Y36vA6NilIj7bK4WmTsWkCmmzazGOwgKi1zWC51W/SjNXyWkc= | ||
secure: l4S5cjkkjhj82j3Tq51/zkBEkjOfSl9xaISu9rmcQNQUbsqp1qrLiKmcMVm0mirNezhTnNdeeCWRyeuvXBNpbRq37KKM6NGScmbAPdCKZeDw6/wDOwjzaMpsnzynq7EiowrgrawwffTa1kP6dgzkG4U/ftjd1jNdNMmOz5MyMnkS2cVv2Uy0o/g7MPQ1hIVAGpoLtnjJ+iGZrQrCWGOr9zp6k003T0xGlS9oEPLM1yid1s1Aeeq8p8Jaee2gGbhpOZ8fySHPcBX2e7TThgoqwfN/wvDzBwko5VPHTaWiVa9FW4zirwyE9EK8LmjAuodF63QOBujO5YTCf1ja5iC5czxZrjNsZCznXmsVqZlyetF2aMofDk++0T0zCmXpMRjivmLV0O/ZSl/HDkMua1TdPuink+FKdGrwCH/IzyeAfT95yVisiRpmgNAhn8/IW/U8v87voquy+YoVL6egSjoB5EyEnzSoojK7qyRPCPmFmKcJHK3aoT3yocwgOSgClqX1gbrYrXAKkXR8lPp7VlZdNKIbKQLu6TILAOVILsAU2MFJbomMAREL/kM9tB3jOj34gKl0qghMOM10BUnWZ3L+MrNamm/0nrnFhlsI8OIVB47ahOnhVZsLk1H2LGZDwBvJTv2gzEG0mUaQaA45/dxJWvR9IZpObEu6T/U/e+uKI+g= | ||
skip_existing: true | ||
skip_cleanup: true | ||
on: | ||
distributions: sdist | ||
repo: AxeldeRomblay/MLBox | ||
branch: master | ||
branch: master |