-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Moving all system test scripts in system_tests/. #1463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Can we still exclude our system tests if they're a sub-package? If not, can we at least make the package private? |
|
Sure. Excluding them will mean they don't show up in an |
|
SGTM. Let's try that. On Fri, Feb 12, 2016, 11:26 PM Danny Hermes notifications@github.com
|
|
@jonparrott Had a revelation that I could just move those scripts into the |
bdbe005 to
aa5a498
Compare
Also removing system_tests/__init__.py so it is no longer a package and making all imports happen locally (rather than from the root of the project). Changes originally inspired by emulator script breakages in googleapis#1373.
aa5a498 to
8c1db22
Compare
|
I can't believe I didn't realize that either. LGTM. |
| include README.rst | ||
| graft gcloud | ||
| global-exclude *.pyc | ||
| recursive-exclude system_tests * |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Moving all system test scripts in system_tests/.
* fix: snippetgen skip REST snippets * upgrade test case to include REST * refactor transport_type computation * revert chunks from incorrect branch * enable REST transport for goldens and update golden files * update golden files with REST enabled Co-authored-by: Anthonios Partheniou <partheniou@google.com>
* feat: adding universe domain support for downscroped credentials * fix lint * address comments * Update tests/test_downscoped.py Co-authored-by: Leo <39062083+lsirac@users.noreply.github.com> --------- Co-authored-by: Leo <39062083+lsirac@users.noreply.github.com>
Also removing
system_tests/__init__.pyso it is no longer a package and making all imports happen locally (rather than from the root of the project).Changes originally inspired by emulator script breakages in #1373.
@jonparrott Having to worry about which scripts can see
system_testsis somewhat of an argument for moving intogcloud.system_tests(discussion in #1451). Happy to go that route here instead. WDYT?As-is, the current fix makes
pylintangry, so at the very least we should discuss what to do about that.