Skip to content

Commit 29d6d3b

Browse files
committed
remove dialyzer from ci
1 parent 39675a3 commit 29d6d3b

File tree

4 files changed

+17
-37
lines changed

4 files changed

+17
-37
lines changed

.github/workflows/elixir.yml

-17
Original file line numberDiff line numberDiff line change
@@ -102,22 +102,5 @@ jobs:
102102
- name: Credo Check
103103
run: mix credo
104104

105-
# retrieve PLT Cache for Dialyzer
106-
- name: Retrieve PLT Cache
107-
uses: actions/cache@v1
108-
id: plt-cache
109-
with:
110-
path: priv/plts
111-
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plts-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
112-
113-
- name: Create PLTs
114-
if: steps.plt-cache.outputs.cache-hit != 'true'
115-
run: |
116-
mkdir -p priv/plts
117-
mix dialyzer --plt
118-
119-
- name: Run dialyzer
120-
run: mix dialyzer --no-check
121-
122105
- name: Run tests
123106
run: mix test

config/test.exs

+6-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ config :logger, level: :warning
3333
config :phoenix, :plug_init_mode, :runtime
3434

3535
# Configure Wallaby Chrome driver
36-
config :wallaby, driver: Wallaby.Chrome
36+
config :wallaby,
37+
driver: Wallaby.Chrome,
38+
chromedriver: [
39+
headless: false
40+
]
41+
3742
# config :wallaby, driver: Wallaby.Selenium
3843
config :wallaby, otp_app: :elixir_newbie
3944

mix.exs

+1-11
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,7 @@ defmodule ElixirNewbie.MixProject do
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
start_permanent: Mix.env() == :prod,
1111
aliases: aliases(),
12-
deps: deps(),
13-
# fixes dialyzer warning in mix tasks
14-
dialyzer: dialyzer()
15-
]
16-
end
17-
18-
defp dialyzer do
19-
[
20-
plt_add_apps: [:mix],
21-
plt_core_path: "priv/plts",
22-
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
12+
deps: deps()
2313
]
2414
end
2515

test/elixir_newbie_web/wallaby/snapshot_test.exs

+10-8
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,17 @@ defmodule ElixirNewbieWeb.Wallaby.SnapshotTests do
2020

2121
@tag :wallaby
2222
feature "take snapshots", %{session: session} do
23-
Enum.each(@urls, fn url ->
24-
page = visit(session, url)
23+
page = visit(session, "/")
24+
take_screenshot(page, name: "test")
25+
# Enum.each(@urls, fn url ->
26+
# page = visit(session, url)
2527

26-
Enum.each(@sizes, fn {size, width} ->
27-
screen = resize_window(page, width, 2000)
28+
# Enum.each(@sizes, fn {size, width} ->
29+
# screen = resize_window(page, width, 2000)
2830

29-
Process.sleep(500)
30-
take_screenshot(screen, name: "#{(url == "" && "home") || url}/#{size}")
31-
end)
32-
end)
31+
# Process.sleep(500)
32+
# take_screenshot(screen, name: "#{(url == "" && "home") || url}/#{size}")
33+
# end)
34+
# end)
3335
end
3436
end

0 commit comments

Comments
 (0)