mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-10 17:15:09 +08:00
31b0a9f7d0
* Add windows version of ci Config autocrlf to input on Windows start epmd in background * Update .github/workflows/test.yaml * Update .github/workflows/test.yaml * Update .github/workflows/test.yaml * Fix tests * Fix ownership of cached files * Fix tests * Increase timeouts * Run tests on Windows only on main Co-authored-by: Jonatan Kłosko <jonatanklosko@gmail.com>
48 lines
1.5 KiB
Elixir
48 lines
1.5 KiB
Elixir
# Start manager on the current node and configure it not to
|
|
# terminate automatically, so there is no race condition
|
|
# when starting/stopping Embedded runtimes in parallel
|
|
Livebook.Runtime.ErlDist.NodeManager.start(
|
|
auto_termination: false,
|
|
unload_modules_on_termination: false
|
|
)
|
|
|
|
# Use the embedded runtime in tests by default, so they are
|
|
# cheaper to run. Other runtimes can be tested by starting
|
|
# and setting them explicitly
|
|
Application.put_env(:livebook, :default_runtime, Livebook.Runtime.Embedded.new())
|
|
|
|
Application.put_env(:livebook, :runtime_modules, [
|
|
Livebook.Runtime.ElixirStandalone,
|
|
Livebook.Runtime.MixStandalone,
|
|
Livebook.Runtime.Attached,
|
|
Livebook.Runtime.Embedded
|
|
])
|
|
|
|
defmodule Livebook.Runtime.Embedded.Dependencies do
|
|
def entries() do
|
|
[
|
|
%{
|
|
dependency: {:kino, "~> 0.5.2"},
|
|
description: "Interactive widgets for Livebook",
|
|
name: "kino",
|
|
url: "https://hex.pm/packages/kino",
|
|
version: "0.5.2"
|
|
}
|
|
]
|
|
end
|
|
end
|
|
|
|
# Enable dependency saerch for the embedded runtime
|
|
Application.put_env(:livebook, Livebook.Runtime.Embedded,
|
|
load_dependency_entries: {Livebook.Runtime.Embedded.Dependencies, :entries, []}
|
|
)
|
|
|
|
# Disable autosaving
|
|
Livebook.Storage.current().insert(:settings, "global", autosave_path: nil)
|
|
|
|
erl_docs_available? = Code.fetch_docs(:gen_server) != {:error, :chunk_not_found}
|
|
|
|
exclude = []
|
|
exclude = if erl_docs_available?, do: exclude, else: Keyword.put(exclude, :erl_docs, true)
|
|
|
|
ExUnit.start(assert_receive_timeout: 1_500, exclude: exclude)
|