File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -108,9 +108,9 @@ def system(session):
108
108
109
109
@nox .session (python = ['2.7' , '3.6' ])
110
110
def snippets (session ):
111
- """Run the system test suite."""
111
+ """Run the snippets test suite."""
112
112
113
- # Sanity check: Only run system tests if the environment variable is set.
113
+ # Sanity check: Only run snippets tests if the environment variable is set.
114
114
if not os .environ .get ('GOOGLE_APPLICATION_CREDENTIALS' , '' ):
115
115
session .skip ('Credentials must be set via environment variable.' )
116
116
@@ -122,7 +122,7 @@ def snippets(session):
122
122
session .install ('-e' , os .path .join ('..' , 'test_utils' ))
123
123
session .install ('-e' , '.[pandas, pyarrow]' )
124
124
125
- # Run py.test against the system tests.
125
+ # Run py.test against the snippets tests.
126
126
session .run (
127
127
'py.test' , os .path .join ('docs' , 'snippets.py' ), * session .posargs )
128
128
@@ -176,4 +176,4 @@ def blacken(session):
176
176
"google" ,
177
177
"tests" ,
178
178
"docs" ,
179
- )
179
+ )
You can’t perform that action at this time.
0 commit comments