Skip to content

Commit

Permalink
Suppress unit test coverage checks in demo code.
Browse files Browse the repository at this point in the history
Having coveralls complain about uncovered functest / demo code is not helpful.
  • Loading branch information
tseaver committed Oct 7, 2014
1 parent 941a2c7 commit ac9f18d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions gcloud/datastore/demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pragma NO COVER
import os
from gcloud import datastore

Expand Down
1 change: 1 addition & 0 deletions gcloud/datastore/demo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pragma NO COVER
from gcloud import demo
from gcloud import datastore

Expand Down
1 change: 1 addition & 0 deletions gcloud/datastore/demo/demo.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pragma NO COVER
# Welcome to the gCloud Datastore Demo! (hit enter)

# We're going to walk through some of the basics...
Expand Down
1 change: 1 addition & 0 deletions gcloud/demo.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pragma NO COVER
from code import interact
import itertools
import os.path
Expand Down
1 change: 1 addition & 0 deletions gcloud/storage/demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pragma NO COVER
import os
from gcloud import storage

Expand Down
1 change: 1 addition & 0 deletions gcloud/storage/demo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pragma NO COVER
from gcloud import demo
from gcloud import storage

Expand Down
1 change: 1 addition & 0 deletions gcloud/storage/demo/demo.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pragma NO COVER
# Welcome to the gCloud Storage Demo! (hit enter)

# We're going to walk through some of the basics...,
Expand Down

0 comments on commit ac9f18d

Please sign in to comment.