bazelbuild / rules_webtesting

Bazel rules to allow testing against a browser with WebDriver.
Apache License 2.0
97 stars 56 forks source link

`env` is ignored #472

Open benh opened 8 months ago

benh commented 8 months ago

env seems to be a valid keyword argument but is not set.

BUILD.bazel:

load("@io_bazel_rules_webtesting//web:py.bzl", "py_web_test_suite")

py_web_test_suite(
    ...
    env = ...,
    ...
)