Lines Matching full:python_version
27 workspace = ctx.actions.declare_file("/".join([ctx.attr.python_version, "WORKSPACE"]))
31 substitutions = {"%python_version%": ctx.attr.python_version},
34 build_bazel = ctx.actions.declare_file("/".join([ctx.attr.python_version, "BUILD.bazel"]))
38 substitutions = {"%python_version%": ctx.attr.python_version},
41 …python_version_test = ctx.actions.declare_file("/".join([ctx.attr.python_version, "python_version_…
47 …run_acceptance_test_py = ctx.actions.declare_file("/".join([ctx.attr.python_version, "run_acceptan…
53 "%python_version%": ctx.attr.python_version,
54 "%test_location%": "/".join([ctx.attr.test_location, ctx.attr.python_version]),
65 executable = ctx.actions.declare_file("run_test_{}.bat".format(ctx.attr.python_version))
75 executable = ctx.actions.declare_file("run_test_{}.sh".format(ctx.attr.python_version))
112 "python_version": attr.string(
149 def acceptance_test(python_version, **kwargs):
155 python_version = python_version,
164 for python_version in TOOL_VERSIONS.keys():
166 if platform not in TOOL_VERSIONS[python_version]["sha256"]:
169 name = "python_{python_version}_{platform}_test".format(
170 python_version = python_version.replace(".", "_"),
173 python_version = python_version,