Skip to content

Commit

Permalink
Split tests in server into separate targets per file (needed for down…
Browse files Browse the repository at this point in the history
…stream sync)
  • Loading branch information
wwwillchen committed Apr 2, 2024
1 parent 8fc2830 commit 424084f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions mesop/server/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ py_library(
)

py_test(
name = "server_test",
srcs = glob(["*_test.py"]),
name = "colab_run_test",
srcs = ["colab_run_test.py"],
deps = [":server"] + THIRD_PARTY_PY_PYTEST,
)

py_test(
name = "wsgi_app_test",
srcs = ["wsgi_app_test.py"],
deps = [":server"] + THIRD_PARTY_PY_PYTEST,
)

0 comments on commit 424084f

Please sign in to comment.