mirror of
https://github.com/LIV2/amitools.git
synced 2025-12-05 22:22:45 +00:00
29 lines
375 B
YAML
29 lines
375 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
env:
|
|
- PIP=pip
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
- os: osx
|
|
language: generic
|
|
env:
|
|
- TOXENV=py27
|
|
- PIP=pip2
|
|
|
|
install:
|
|
- |
|
|
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
|
$PIP install tox
|
|
fi
|
|
- $PIP install cython
|
|
- $PIP install tox-travis
|
|
|
|
script: tox
|