1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-31 10:11:14 +00:00
thefuck/.travis.yml

14 lines
312 B
YAML
Raw Permalink Normal View History

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-04-08 19:04:54 +02:00
install:
- pip install -r requirements.txt
2015-07-17 18:37:49 +02:00
- python setup.py develop
2015-07-19 21:57:19 +03:00
- pip install coveralls
script:
- export COVERAGE_PYTHON_VERSION=python-${TRAVIS_PYTHON_VERSION:0:1}
- coverage run --source=thefuck,tests -m py.test -v
after_success: coveralls