Skip to content

Commit

Permalink
Adding travis_wait for timing out Travis CI jobs (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
czgdp1807 authored Oct 17, 2021
1 parent 9c6ed37 commit ce7a749
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 @@ -3,12 +3,12 @@ sudo: false
language: python

python:
- "3.6"
- "3.8"
install:
- pip install -r requirements.txt
- travis_wait 60 pip install -r requirements.txt

script:
- python -m pytest --doctest-modules --cov=./ --cov-report=xml -s
- travis_wait 60 python -m pytest --doctest-modules --cov=./ --cov-report=xml -s

after_success:
- codecov

0 comments on commit ce7a749

Please sign in to comment.