diff options
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | kerberos-requirements.txt | 2 | ||||
-rw-r--r-- | tasks.py | 16 |
3 files changed, 13 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 3f6f7331..604b6fd2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,10 @@ install: # Dev (doc/test running) requirements - pip install coveralls # For coveralls.io specifically - pip install -r dev-requirements.txt + - pip install -r kerberos-requirements.txt # for GSSAPI tests script: # Main tests, with coverage! - - invoke coverage + - inv test --coverage --kerberos # Ensure documentation & invoke pipeline run OK. # Run 'docs' first since its objects.inv is referred to by 'www'. # Also force warnings to be errors since most of them tend to be actual diff --git a/kerberos-requirements.txt b/kerberos-requirements.txt new file mode 100644 index 00000000..0e8c156a --- /dev/null +++ b/kerberos-requirements.txt @@ -0,0 +1,2 @@ +pyasn1>=0.1.7 +python-gssapi>=0.6.1 @@ -27,12 +27,14 @@ www = Collection.from_module(_docs, name='www', config={ # Until we move to spec-based testing @task -def test(ctx): - ctx.run("python test.py --verbose", pty=True) - -@task -def coverage(ctx): - ctx.run("coverage run --source=paramiko test.py --verbose") +def test(ctx, kerberos=False, 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) # Until we stop bundling docs w/ releases. Need to discover use cases first. @@ -48,4 +50,4 @@ def release(ctx): publish(ctx, wheel=True) -ns = Collection(test, coverage, release, docs=docs, www=www) +ns = Collection(test, release, docs=docs, www=www) |