2015-04-08 19:04:54 +02:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "3.4"
|
2015-04-17 16:24:03 +02:00
|
|
|
- "3.3"
|
|
|
|
- "2.7"
|
2015-07-25 03:01:03 +03:00
|
|
|
addons:
|
|
|
|
apt:
|
2015-07-25 03:22:16 +03:00
|
|
|
sources:
|
|
|
|
- fish-shell/release-2
|
2015-07-25 03:01:03 +03:00
|
|
|
packages:
|
|
|
|
- bash
|
|
|
|
- zsh
|
|
|
|
- fish
|
|
|
|
- tcsh
|
2015-07-27 23:38:04 +03:00
|
|
|
- pandoc
|
2015-07-30 18:28:20 +03:00
|
|
|
- git
|
2015-07-25 03:01:03 +03:00
|
|
|
env:
|
2015-07-25 03:02:04 +03:00
|
|
|
- FUNCTIONAL=true BARE=true
|
2015-04-08 19:04:54 +02:00
|
|
|
install:
|
2015-07-22 04:49:33 +03:00
|
|
|
- pip install coveralls
|
2015-04-08 19:04:54 +02:00
|
|
|
- pip install -r requirements.txt
|
2015-07-17 18:37:49 +02:00
|
|
|
- python setup.py develop
|
2015-07-20 21:24:00 +03:00
|
|
|
- rm -rf build
|
2015-07-19 21:57:19 +03:00
|
|
|
script:
|
|
|
|
- export COVERAGE_PYTHON_VERSION=python-${TRAVIS_PYTHON_VERSION:0:1}
|
2015-07-25 03:01:03 +03:00
|
|
|
- coverage run --source=thefuck,tests -m py.test -v --capture=sys
|
2015-07-19 21:57:19 +03:00
|
|
|
after_success: coveralls
|