Skip to content
This repository was archived by the owner on Jul 30, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ python:
- '3.4'
- '3.5'
install:
- pip install -r requirements.txt
- pip install -r test_requirements.txt
- pip install coveralls
- virtualenv var
- var/bin/pip install -U pip
- var/bin/pip install -r requirements.txt
- var/bin/pip install -r test_requirements.txt
- var/bin/pip install coveralls pytest pytest-cov
script:
coverage run --source=gogs_client setup.py test
var/bin/coverage run --source=gogs_client var/bin/pytest tests --cov=gogs_client --cov-report term-missing
after_success:
coveralls
deploy:
Expand Down