Skip to content

Commit 31ff8dd

Browse files
committed
Add the repro test
1 parent c8819f9 commit 31ff8dd

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

py/tests/605/BUILD.bazel

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
load("//py:defs.bzl", "py_test")
2+
3+
py_binary(
4+
name = "foo",
5+
srcs = ["foo.py"],
6+
exec_properties = None,
7+
)

py/tests/605/foo.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env python3
2+
3+
def foo():
4+
return 42

0 commit comments

Comments
 (0)