mirror of
https://github.com/vale981/releases
synced 2025-03-05 09:41:42 -05:00
16 lines
356 B
Python
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)
|