Skip to content

Commit 424084f

Browse files
committed
Split tests in server into separate targets per file (needed for downstream sync)
1 parent 8fc2830 commit 424084f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

mesop/server/BUILD

+8-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ py_library(
1919
)
2020

2121
py_test(
22-
name = "server_test",
23-
srcs = glob(["*_test.py"]),
22+
name = "colab_run_test",
23+
srcs = ["colab_run_test.py"],
24+
deps = [":server"] + THIRD_PARTY_PY_PYTEST,
25+
)
26+
27+
py_test(
28+
name = "wsgi_app_test",
29+
srcs = ["wsgi_app_test.py"],
2430
deps = [":server"] + THIRD_PARTY_PY_PYTEST,
2531
)

0 commit comments

Comments
 (0)