Skip to content

Commit

Permalink
chore: label uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhart1o1 committed Feb 5, 2024
1 parent 2e81242 commit dc38a16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ CONSENT_TEST_LABEL = "consent"
DASHBOARD_TEST_LABEL = "dashboard"
PAY_TEST_LABEL = "pay"
ADMIN_PANEL_TEST_LABEL = "admin-panel"
map_TEST_LABEL = "map"
MAP_TEST_LABEL = "map"

TEST_RESOURCES = {
CORE_TEST_LABEL: "api-test",
CONSENT_TEST_LABEL: "consent-test",
DASHBOARD_TEST_LABEL: "dashboard-test",
PAY_TEST_LABEL: "pay-test",
ADMIN_PANEL_TEST_LABEL: "admin-panel-test",
map_TEST_LABEL: "map-test"
MAP_TEST_LABEL: "map-test"
}

is_ci=("ci" in sys.argv) or cfg.get("bats", False)
Expand Down Expand Up @@ -227,7 +227,7 @@ map_test_target = "//apps/map:test-integration"
local_resource(
"map-test",
labels = ["test"],
auto_init = is_ci and map_TEST_LABEL in cfg.get("test", []),
auto_init = is_ci and MAP_TEST_LABEL in cfg.get("test", []),
cmd = "buck2 test {}".format(map_test_target),
resource_deps = [
"map",
Expand Down

0 comments on commit dc38a16

Please sign in to comment.