-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (34 loc) · 969 Bytes
/
.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
language: python
os:
- linux
- osx
python:
- "3.2"
- "3.3"
- "3.4"
env:
global:
- COVERAGE_PROCESS_START=$PWD/.coveragerc
- COVERAGE_FILE=$PWD/.coverage
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- pip install git+https://github.com/behave/behave
- pip install python-coveralls
- python setup.py develop
- sudo apt-get install -qq g++-4.4
- sudo apt-get install -qq g++-4.5
- sudo apt-get install -qq g++-4.6
- sudo apt-get install -qq g++-4.7
- sudo apt-get install -qq g++-4.8
- sudo apt-get install -qq libfuse-dev
script:
- coverage erase
- coverage run -a --source=src/configure setup.py test
- coverage run -a --source=src/configure `which behave` tests/features -q -m -k -T --no-summary --no-snippets --tags=~tup
- coverage combine
- coverage report
- coveralls
git:
submodules: false