diff --git a/pavement.py b/pavement.py index 15fc47c..123f913 100644 --- a/pavement.py +++ b/pavement.py @@ -24,6 +24,11 @@ def nosetests(): sh('nosetests') +@task +def completion_tests(): + """Run integration tests for bash completion.""" + sh('nosetests tests/integration/completion/bash/') + @task def coverage(): """Run test and collect coverage.""" diff --git a/tox.ini b/tox.ini index fc12799..8a662c8 100644 --- a/tox.ini +++ b/tox.ini @@ -13,6 +13,7 @@ commands = pip install -U . paver nosetests paver lint + paver completion_tests paver bats passenv = SERVERAUDITOR_USERNAME SERVERAUDITOR_PASSWORD