Skip to content

Commit c0867c9

Browse files
committed
Enable external pkg loading by default for tests run against Python dev.
1 parent 9957619 commit c0867c9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/workerd/server/tests/python/BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ py_wd_test("subdirectory")
3030

3131
py_wd_test(
3232
"sdk",
33+
python_flags = ["0.26.0a2"],
3334
tags = [
3435
# TODO(someday): Fix asan failure for this, see https://github.com/cloudflare/workerd/pull/3140#discussion_r1858273318
3536
"no-asan",

src/workerd/server/tests/python/py_wd_test.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ load("//:build/wd_test.bzl", "wd_test")
33

44
FEATURE_FLAGS = {
55
"0.26.0a2": ["python_workers"],
6-
"development": ["python_workers_development"],
6+
"development": ["python_workers_development", "python_external_packages"],
77
}
88

99
def py_wd_test(

0 commit comments

Comments
 (0)