summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tasks.py b/tasks.py
index 68912ce0..b236ee42 100644
--- a/tasks.py
+++ b/tasks.py
@@ -27,13 +27,11 @@ www = Collection.from_module(_docs, name='www', config={
# Until we move to spec-based testing
@task
-def test(ctx, kerberos=False, coverage=False):
+def test(ctx, coverage=False):
runner = "python"
if coverage:
runner = "coverage run --source=paramiko"
flags = "--verbose"
- if kerberos:
- flags += " --gssapi-test --test-gssauth --test-gssapi-keyex"
ctx.run("{0} test.py {1}".format(runner, flags), pty=True)