Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed Jun 13, 2018
1 parent 625e0b2 commit fb1476b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,21 @@ language: python

python:
- "3.6"
- "3.6.5"

os:
- linux
#- osx
- osx

matrix:
fast_finish: true

install:
- pip3 install pylint coverage coveralls

script:
# Everything is into one line because we want the test to fail if one of those command fails.
- pip3 install pylint coverage coveralls && echo "Lint PyFunceble" && pylint PyFunceble && echo "Lint tests" && pylint tests/*.py && pip3 install git+https://github.com/funilrys/PyFunceble.git@dev#egg=PyFunceble && PyFunceble -ex -d github.com && pip uninstall -y PyFunceble && coverage run setup.py test && python3 setup.py install && PyFunceble -ex -d github.com && PyFunceble -ex -f .travis/list_to_test && PyFunceble -ex --adblock -f .travis/adblock_to_test
- echo "Lint PyFunceble" && pylint PyFunceble && echo "Lint tests" && pylint tests/*.py && pip3 install git+https://github.com/funilrys/PyFunceble.git@dev#egg=PyFunceble && PyFunceble -ex -d github.com && pip uninstall -y PyFunceble && coverage run setup.py test && python3 setup.py install && PyFunceble -ex -d github.com && PyFunceble -ex -f .travis/list_to_test && PyFunceble -ex --adblock -f .travis/adblock_to_test

after_success:
- coveralls
Expand Down

0 comments on commit fb1476b

Please sign in to comment.