Skip to content

Commit

Permalink
updated travis
Browse files Browse the repository at this point in the history
  • Loading branch information
erayerdin committed Apr 16, 2020
1 parent 217139e commit 3d9bd67
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,35 @@ jobs:
python: '3.7'
install:
- pip install -r requirements.txt
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install || true
script:
- black setup.py tests/ tgcli/ -l 79
- stage: Testing
python: '3.5'
install:
- pip install -r requirements.txt
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install || true
script:
- pytest
- stage: Testing
python: '3.6'
install:
- pip install -r requirements.txt
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install || true
script:
- pytest
- stage: Testing
python: '3.7'
install:
- pip install -r requirements.txt
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install || true
script:
- pytest
- stage: Covering / Deploy
python: '3.7'
install:
- pip install -r requirements.txt
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install
- cat dev.requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip install || true
script:
- pytest --cov-config .coveragerc --cov tgcli tests/
- coveralls
Expand Down

0 comments on commit 3d9bd67

Please sign in to comment.