Skip to content

Commit

Permalink
Move flake8 to script step in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
dlareau committed Feb 13, 2020
1 parent c12fce2 commit 0e1b5cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ before_install:
- sudo mv docker-compose /usr/local/bin

install:
- pip install coveralls flake8
- docker-compose build
- docker-compose up -d

script:
- docker-compose exec app coverage run
- docker-compose exec app coverage report
- flake8 huntserver

after_script:
- docker-compose stop
- docker-compose rm -f

after_success:
- pip install coveralls flake8
- cp .coverage .coverage.extra
- coverage combine
- coveralls
- flake8 huntserver
- coveralls

0 comments on commit 0e1b5cb

Please sign in to comment.