aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)Author
2021-03-15ci: create sponge_log.xml files (#722)Bu Sun Kim
* ci: create sponge_log.xml files * test: fix noxfile Co-authored-by: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com>
2021-01-22test: re-enable system tests (#670)Bu Sun Kim
2020-09-08fix: migrate signBlob to iamcredentials.googleapis.com (#600)Bu Sun Kim
Migrate signBlob from iam.googleapis.com to iamcredentials.googleapis.com. This API is deprecated and will be shutdown in one year. This is used google.auth.iam.Signer. Added a system_test to sanity check the implementation.
2020-07-17Revert "fix: migrate signBlob to iamcredentials.googleapis.com" (#563)Bu Sun Kim
Reverts googleapis/google-auth-library-python#553 We have received reports that this is breaking users. See internal issue 161506225.
2020-07-09feat: add quota project to base credentials class (#546)Bu Sun Kim
2020-06-30fix: migrate signBlob to iamcredentials.googleapis.com (#553)bojeil-google
* Migrate signBlob from iam.googleapis.com to iamcredentials.googleapis.com. This API is deprecated and will be shutdown in one year. This is used google.auth.iam.Signer. Added a system_test to sanity check the implementation.
2020-02-13fix: compute engine id token credentials "with_target_audience" method (#438)Brent Shaffer
Co-authored-by: Lorenzo Migliorino <50544028+lmiglio@users.noreply.github.com> Co-authored-by: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com>
2018-10-05Enable static type checking with pytype (#298)Teddy Sudol
* Ignore pytype import errors in google/auth. These errors are raised because the packages are not required, i.e. not listed in setup.py. We can't guarantee they'll be installed or that their pyi files exist in github.com/python/typeshed, so silence potential errors instead. This does impact the accuracy of type checking. * Ignore pytype import errors in transport/. These imports are not listed in setup.py, because they are optional -- it is assumed the user has them installed if needed. Disabling import-error for these imports prevents useless errors from pytype. * Ignore various type errors raised by pytype. - `__init__.py`: pytype is not aware of `__path__`. - jwt.py: the pyi file for urllib.unparse is not aware of None. Empty strings are clearer. * Add pytype disable comments for scripts/ oauth2client isn't listed as a requirement, so users may not have it installed. * Fix lint errors from pytype directives. * Enable pytype -V3.6. A few notes: - Previous commits fixed type errors detected by pytype. - setup.cfg disables pytype's `pyi-error`. This is necessary due to incomplete type stubs in https://github.com/python/typeshed. - This only enables pytype's Python3.6 checks. Python2.7 is supported by pytype but incomplete type stubs cause spurious type errors. * Remove pytype directives. Updates to pytype made these directives unnecessary. * Move pytype install command. * Add pytype to tox. * Remove pytype directives for tox-installed imports. These imports are handled by setup.py and tox.ini, so they'll be available when pytype is run under tox. * Fix lint error.
2018-02-08Add `cryptography`-based RSA signer and verifier. (#185)Danny Hermes
Fixes #183.
2017-04-12Move run_pylint to gcp-devrel-py-tools (#153)Jon Wayne Parrott
2016-10-27Nox system test refactor (#60)Jon Wayne Parrott
* Add basic noxfile to orchestrate system tests * Move explicit system tests to nox * Add cloud sdk environment automation
2016-10-04Basic project setup (#4)Jon Wayne Parrott