Add sites/docs building to Travis
This commit is contained in:
parent
414fec8f27
commit
fee04a39ec
|
@ -8,7 +8,12 @@ install:
|
||||||
# Dev (doc/test running) requirements
|
# Dev (doc/test running) requirements
|
||||||
- pip install coveralls # For coveralls.io specifically
|
- pip install coveralls # For coveralls.io specifically
|
||||||
- pip install -r dev-requirements.txt
|
- pip install -r dev-requirements.txt
|
||||||
script: coverage run --source=paramiko test.py --verbose
|
script:
|
||||||
|
# Main tests, with coverage!
|
||||||
|
- coverage run --source=paramiko test.py --verbose
|
||||||
|
# Ensure documentation & invoke pipeline run OK
|
||||||
|
- invoke www
|
||||||
|
- invoke docs
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
channels: "irc.freenode.org#paramiko"
|
channels: "irc.freenode.org#paramiko"
|
||||||
|
|
Loading…
Reference in New Issue