Skip to content
This repository was archived by the owner on Mar 12, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
sudo: false
notifications:
email: false
language: python
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=docs
install:
- pip install tox
script:
- tox -e $TOX_ENV
after_success:
- tox -e coveralls
Empty file added docs/_static/.gitkeep
Empty file.
17 changes: 16 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33, py34, docs, coverage
envlist = clean, py26, py27, py33, py34, docs, coverage

[testenv]
commands =
Expand All @@ -8,6 +8,10 @@ deps =
pytest
mock

[testenv:clean]
deps = coverage
commands = coverage erase

[testenv:docs]
basepython = python
changedir = docs
Expand All @@ -22,3 +26,14 @@ deps =
commands =
py.test --cov=ogre
usedevelop = true

[testenv:coveralls]
basepython = python
usedevelop = true
deps =
pytest-cov
coveralls
{[testenv]deps}
commands =
py.test --cov=ogre
coveralls