Skip to content

Commit

Permalink
Merge 54fc001 into 577b4be
Browse files Browse the repository at this point in the history
  • Loading branch information
eduzen committed May 21, 2019
2 parents 577b4be + 54fc001 commit ff0d0d9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .travis.yml
@@ -1,20 +1,30 @@
dist: xenial
language: python

python:
- "3.5"
- "3.6"
- "3.7-dev"
- "3.7"
- "3.8-dev"

install:
- "pip install -r requirements.txt"
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then pip install python-coveralls ; fi
script:
- "pytest --cov=fades"
- if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then pip install python-coveralls ; fi

script:
- |
if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then
pytest --cov=fades;
else
pytest;
fi
after_script:
- "flake8 fades --max-line-length=99 --select=E,W,F,C,N"

# report coverage to coveralls.io
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then coveralls; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then coveralls; fi

cache:
apt: true
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -5,6 +5,7 @@ Berenice Larsen Pereyra <berelarsenp@gmail.com>
David Litvak Bruno <david.litvakb@gmail.com>
Diego Duncan <diegoduncan21@gmail.com>
Diego Mascialino <dmascialino@gmail.com>
Eduardo Enriquez <eduardo.a.enriquez@gmail.com>
Facundo Batista <facundo@taniquetil.com.ar>
FaQ <facundofc@gmail.com>
Filipe Ximenes <filipeximenes@gmail.com>
Expand Down

0 comments on commit ff0d0d9

Please sign in to comment.