• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

supabase / supavisor / e5e7ebfe80dbec4965226225050d4ef5c8216e88-PR-605

21 Feb 2025 02:35PM UTC coverage: 45.973% (-0.03%) from 46.003%
e5e7ebfe80dbec4965226225050d4ef5c8216e88-PR-605

Pull #605

github

hauleth
fix: remaining SSL connections that need to set `verify_none` option
Pull Request #605: fix: remaining SSL connections that need to set `verify_none` option

2 of 9 new or added lines in 3 files covered. (22.22%)

267 existing lines in 26 files now uncovered.

959 of 2086 relevant lines covered (45.97%)

635.02 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/lib/supavisor_web/views/tenant_view.ex
1
defmodule SupavisorWeb.TenantView do
2
  use SupavisorWeb, :view
3
  alias SupavisorWeb.TenantView
4
  alias SupavisorWeb.UserView
5

6
  def render("index.json", %{tenants: tenants}) do
7
    %{data: render_many(tenants, TenantView, "tenant.json")}
×
8
  end
9

10
  def render("show.json", %{tenant: tenant}) do
UNCOV
11
    %{data: render_one(tenant, TenantView, "tenant.json")}
4✔
12
  end
13

14
  def render("tenant.json", %{tenant: tenant}) do
UNCOV
15
    %{tenant | users: render_many(tenant.users, UserView, "user.json")}
4✔
16
  end
17

18
  def render("error.json", %{error: reason}) do
19
    %{error: reason}
×
20
  end
21

22
  def render("show_terminate.json", %{result: result}) do
23
    %{result: result}
×
24
  end
25

26
  def render("not_found.json", _) do
UNCOV
27
    %{error: "not found"}
1✔
28
  end
29
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc