1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00
thefuck/.travis.yml

26 lines
500 B
YAML
Raw Normal View History

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