-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Move datastore code into a subpackage #2417
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
|
|
||
| REQUIREMENTS = [ | ||
| 'google-cloud-core', | ||
| 'grpcio >= 1.0.0', |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
|
|
||
|
|
||
| REQUIREMENTS = [ | ||
| 'google-cloud-core', |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
e98911b to
5cc0b29
Compare
| - tox -e lint | ||
| - tox -e cover | ||
| - (cd core && tox -e cover) | ||
| - (cd datastore && tox -e cover) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
|
LGTM |
Done via: $ mkdir -p datastore/google/cloud $ cp google/__init__.py datastore/google/__init__.py $ git add datastore/google/__init__.py $ cp google/cloud/__init__.py datastore/google/cloud/__init__.py $ git add datastore/google/cloud/__init__.py $ git mv google/cloud/datastore datastore/google/cloud/datastore $ git mv unit_tests/datastore datastore/unit_tests
- Adding README, setup.py, MANIFEST.in, .coveragerc and tox.ini
- Adding google-cloud-datastore as a dependency to the umbrella
package
- Adding the datastore subdirectory into the list of packages
for verifying the docs
- Incorporating the datastore subdirectory into the umbrella
coverage report
- Adding the datastore only tox tests to the Travis config
- Adding {toxinidir}/../core as a dependency for the datastore
tox config
5cc0b29 to
0401983
Compare
|
As with #2416, Pushed to resolve rebase conflict and re-ran script. Won't wait on Travis since a) that could be awhile and b) this will be painful. |
This PR was created via: https://gist.github.com/dhermes/e239691aa584bd56a5352e34aad27cf3
NOTE: Since only
bigtableanddatastorehad to touch therun_pylintandtox.iniconfigs for ignoring generated code, the 3rd commit is just written the old-fashioned way.