BUILD 617 B

12345678910111213141516171819202122232425
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("@mypy_integration//:mypy.bzl", "mypy_test")
  5. py_binary(
  6. name = "new_proposal",
  7. srcs = ["new_proposal.py"],
  8. python_version = "PY3",
  9. )
  10. py_test(
  11. name = "new_proposal_test",
  12. srcs = ["new_proposal_test.py"],
  13. data = ["template.md"],
  14. python_version = "PY3",
  15. deps = [":new_proposal"],
  16. )
  17. mypy_test(
  18. name = "new_proposal_mypy_test",
  19. include_imports = True,
  20. deps = [":new_proposal"],
  21. )