forked from pz4kybsvg/Conception
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
525 B
28 lines
525 B
load("//tools/skylark:py.bzl", "py_binary")
|
|
load("//tools/skylark:drake_py.bzl", "drake_py_unittest")
|
|
load("//tools/lint:lint.bzl", "add_lint_tests")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
# Used by :python_env.bzl.
|
|
config_setting(
|
|
name = "linux",
|
|
values = {"cpu": "k8"},
|
|
)
|
|
|
|
exports_files([
|
|
"py_env_runner.py",
|
|
])
|
|
|
|
drake_py_unittest(
|
|
name = "pathutils_test",
|
|
data = [
|
|
":pathutils.bzl",
|
|
],
|
|
deps = [
|
|
"@bazel_tools//tools/python/runfiles",
|
|
],
|
|
)
|
|
|
|
add_lint_tests()
|