releases/tasks.py
2014-04-14 17:52:24 -04:00

16 lines
356 B
Python

from invocations import docs
from invocations.testing import test
from invocations.packaging import release
from invoke import Collection
from invoke import run
from invoke import task
@task()
def integration_tests():
"""Runs integration tests."""
run('inv test -o --tests=integration')
ns = Collection(test, integration_tests, release, docs)