Skip to content

Commit

Permalink
Merge pull request #67 from ruslandoga/fix-ci-maybe
Browse files Browse the repository at this point in the history
unnest endpoint_opts in tests to fix some ci failures
  • Loading branch information
sasa1977 committed Jun 19, 2024
2 parents 792396d + 9869f9f commit 735105d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/site_encrypt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: erlef/setup-elixir@v1
with:
otp-version: 27.0
elixir-version: 1.17.0
elixir-version: 1.17.1

- name: Restore cached deps
uses: actions/cache@v1
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
erlang 26.0
elixir 1.16-otp-26
erlang 27.0
elixir 1.17.1-otp-27
10 changes: 4 additions & 6 deletions test/site_encrypt_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,10 @@ for {input, index} <- Enum.with_index(inputs),
setup_all do
start_supervised!({
TestEndpoint,
endpoint_opts: [
adapter: unquote(input.adapter),
http: [port: unquote(http_port)],
https: [port: unquote(https_port)],
url: [scheme: "https", host: "localhost", port: unquote(https_port)]
]
adapter: unquote(input.adapter),
http: [port: unquote(http_port)],
https: [port: unquote(https_port)],
url: [scheme: "https", host: "localhost", port: unquote(https_port)]
})

:ok
Expand Down

0 comments on commit 735105d

Please sign in to comment.