mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 20:11:17 +00:00
25142f81f8
* #833: do not require sudo on TravisCI * #N/A: Add Python dev releases to TravisCI pipeline Inspired by Brett Cannon's advise [1]. 1: https://snarky.ca/how-to-use-your-project-travis-to-help-test-python-itself/ * #837: try and kill proc and its children * #N/A: show shell information on `thefuck --version` * #N/A: omit default arguments to get_close_matches * #842: add settings var to control number of close matches * #N/A: remove `n` from the list of `get_closest`'s args
66 lines
1.8 KiB
YAML
66 lines
1.8 KiB
YAML
language: python
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: xenial
|
|
python: "nightly"
|
|
- os: linux
|
|
dist: xenial
|
|
python: "3.8-dev"
|
|
- os: linux
|
|
dist: xenial
|
|
python: "3.7-dev"
|
|
- os: linux
|
|
dist: xenial
|
|
python: "3.7"
|
|
- os: linux
|
|
dist: trusty
|
|
python: "3.6-dev"
|
|
- os: linux
|
|
dist: trusty
|
|
python: "3.6"
|
|
- os: linux
|
|
dist: trusty
|
|
python: "3.5"
|
|
- os: linux
|
|
dist: trusty
|
|
python: "3.4"
|
|
- os: linux
|
|
dist: trusty
|
|
python: "2.7"
|
|
- os: osx
|
|
language: generic
|
|
allow_failures:
|
|
- python: nightly
|
|
- python: 3.8-dev
|
|
- python: 3.7-dev
|
|
- python: 3.6-dev
|
|
services:
|
|
- docker
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python-commandnotfound
|
|
- python3-commandnotfound
|
|
before_install:
|
|
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew update ; fi
|
|
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew upgrade python; fi
|
|
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then pip3 install virtualenv; fi
|
|
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then virtualenv venv -p python3; fi
|
|
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then source venv/bin/activate; fi
|
|
- pip install -U pip
|
|
- pip install -U coveralls
|
|
install:
|
|
- pip install -Ur requirements.txt
|
|
- python setup.py develop
|
|
- rm -rf build
|
|
script:
|
|
- flake8
|
|
- export COVERAGE_PYTHON_VERSION=python-${TRAVIS_PYTHON_VERSION:0:1}
|
|
- export RUN_TESTS="coverage run --source=thefuck,tests -m py.test -v --capture=sys tests"
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 3.7 && $TRAVIS_OS_NAME != "osx" ]]; then $RUN_TESTS --enable-functional; fi
|
|
- if [[ $TRAVIS_PYTHON_VERSION != 3.7 || $TRAVIS_OS_NAME == "osx" ]]; then $RUN_TESTS; fi
|
|
after_success:
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 3.7 && $TRAVIS_OS_NAME != "osx" ]]; then coveralls; fi
|