Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
radiac committed Sep 5, 2020
1 parent 0502dfd commit 9f618e0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
env: TOXENV=py37-django3.1

- python: '3.8'
env: TOXENV=py38-django2.2 DEPLOY=true
env: TOXENV=py38-django2.2
- python: '3.8'
env: TOXENV=py38-django2.2 DATABASE_ENGINE=mysql DATABASE_USER=travis
services:
Expand Down
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ Django Powerwiki - Run multiple wikis in Django

A work in progress wiki system for Django 2.2+

* Project site: http://radiac.net/projects/django-powerwiki/
* Source code: https://github.com/radiac/django-powerwiki

.. image:: https://travis-ci.org/radiac/django-powerwiki.svg?branch=master
:target: https://travis-ci.org/radiac/django-powerwiki

.. image:: https://coveralls.io/repos/radiac/django-powerwiki/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/radiac/django-powerwiki?branch=master


Features
========
Expand Down
13 changes: 7 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,25 @@ depends =
py{37,38}-django{2.2}: clean
report: py{37,38}-django{2.2}
deps =
# The problem is now that requirements.txt is intalling django
# move example reqs into example/requirements
-rrequirements.txt
coveralls
django2.2: Django==2.2.*
django3.0: Django==3.0.*
django3.1: Django==3.1.*
commands = pytest --cov-append {posargs}
commands =
pytest --cov-append {posargs}
-coveralls

[testenv:clean]
deps = coverage
skip_install = true
commands =
coverage erase
-coverage erase

[testenv:report]
deps = coverage
skip_install = true
commands =
coverage report
coverage html
-coverage report
-coverage html

0 comments on commit 9f618e0

Please sign in to comment.