Skip to content

Commit

Permalink
don't build dynamic docs on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Jun 21, 2015
1 parent 1981878 commit 5093888
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/build_generated_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,9 @@ def build_docs():
Trigger rebuild of all documentation that is dynamically generated
from awslimitchecker.
"""
if os.environ.get('CI', None) is not None:
print("Not building dynamic docs in CI environment")
raise SystemExit(0)
logger.info("Beginning build of dynamically-generated docs")
logger.info("Instantiating AwsLimitChecker")
c = AwsLimitChecker()
Expand Down

0 comments on commit 5093888

Please sign in to comment.