ya.make 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. PY2TEST()
  2. PEERDIR(
  3. contrib/python/Flask
  4. contrib/python/google-auth
  5. contrib/python/mock
  6. contrib/python/responses
  7. contrib/python/pyOpenSSL
  8. contrib/python/pytest-localserver
  9. contrib/python/oauth2client
  10. contrib/python/freezegun
  11. )
  12. DATA(
  13. arcadia/contrib/python/google-auth/py2/tests/data
  14. )
  15. PY_SRCS(
  16. NAMESPACE tests
  17. transport/__init__.py
  18. transport/compliance.py
  19. )
  20. TEST_SRCS(
  21. __init__.py
  22. compute_engine/__init__.py
  23. compute_engine/test__metadata.py
  24. compute_engine/test_credentials.py
  25. conftest.py
  26. crypt/__init__.py
  27. crypt/test__cryptography_rsa.py
  28. crypt/test__python_rsa.py
  29. crypt/test_crypt.py
  30. crypt/test_es256.py
  31. oauth2/__init__.py
  32. oauth2/test__client.py
  33. # oauth2/test_challenges.py - need pyu2f
  34. oauth2/test_credentials.py
  35. oauth2/test_id_token.py
  36. oauth2/test_reauth.py
  37. oauth2/test_service_account.py
  38. oauth2/test_sts.py
  39. oauth2/test_utils.py
  40. test__cloud_sdk.py
  41. test__default.py
  42. test__helpers.py
  43. test__oauth2client.py
  44. test__service_account_info.py
  45. test_app_engine.py
  46. test_aws.py
  47. test_credentials.py
  48. test_downscoped.py
  49. test_external_account.py
  50. test_iam.py
  51. test_identity_pool.py
  52. test_impersonated_credentials.py
  53. test_jwt.py
  54. transport/test__http_client.py
  55. transport/test__mtls_helper.py
  56. transport/test_grpc.py
  57. transport/test_mtls.py
  58. # transport/test_requests.py
  59. # transport/test_urllib3.py
  60. )
  61. RESOURCE(
  62. data/privatekey.pem data/privatekey.pem
  63. data/public_cert.pem data/public_cert.pem
  64. )
  65. NO_LINT()
  66. END()