forked from pybox2d/pybox2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (52 loc) · 1.46 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# vi: sw=2 ts=2 sts=2 expandtab
sudo: false
language: generic
stages:
- test
jobs:
include:
- stage: test
name: Linux/Python 3.5
env: PYTHON_VER=3.5
os: linux
- name: Linux/Python 3.6
env: PYTHON_VER=3.6
os: linux
- name: Linux/Python 3.7
env: PYTHON_VER=3.7
os: linux
- name: Linux/Python 3.8
env: PYTHON_VER=3.8
os: linux
- name: OSX/Python 3.5
env: PYTHON_VER=3.5
os: osx
- name: OSX/Python 3.6
env: PYTHON_VER=3.6
os: osx
- name: OSX/Python 3.7
env: PYTHON_VER=3.7
os: osx
- name: OSX/Python 3.8
env: PYTHON_VER=3.8
os: osx
before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
- bash miniconda.sh -b -p $HOME/miniconda
- source "$HOME/miniconda/etc/profile.d/conda.sh"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda config --remove channels defaults
- conda config --add channels 'conda-forge'
install:
- conda create -q -n test-environment python=$PYTHON_VER swig pytest coverage coveralls
- conda activate test-environment
- python setup.py build
- pip install .
script:
- python -c "import Box2D"
- python -c "import Box2D.examples"
- pytest -vv --pyargs Box2D.tests
after_success:
- coveralls