mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
14 lines
312 B
YAML
14 lines
312 B
YAML
language: python
|
|
python:
|
|
- "3.4"
|
|
- "3.3"
|
|
- "2.7"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- python setup.py develop
|
|
- 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
|