Skip to content

Commit

Permalink
nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp committed Sep 12, 2023
1 parent 9fdebd6 commit aeeb191
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 0 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ version = "0.19.27"
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Configurations = "5218b696-f38b-4ac9-8b61-a12ec717816d"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
FileWatching = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
FuzzyCompletions = "fb4132e2-a121-4a70-b8a1-d5b831dcdcc2"
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
Expand All @@ -26,7 +25,6 @@ PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
RegistryInstances = "2792f1a3-b283-48e8-9a74-f99dce5104f3"
RelocatableFolders = "05181044-ff0b-4ac5-8273-598c1e38db00"
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/CellInput/lezer_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { julia_andrey, NodeProp, syntaxTree, Text } from "../../imports/Codemirr
import lodash from "../../imports/lodash.js"

// @ts-ignore
import ManyKeysWeakMap from "https://esm.sh/[email protected]?pin=v113&target=es202"
import ManyKeysWeakMap from "https://esm.sh/[email protected]?pin=v113&target=es2020"

/**
* @param {string} julia_code
Expand Down
10 changes: 5 additions & 5 deletions test/Bonds.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ using Test
import Pluto
import Pluto: update_run!, update_save_run!, WorkspaceManager, ClientSession, ServerSession, Notebook, Cell
import Distributed
import Malt

@testset "Bonds" begin

Expand Down Expand Up @@ -358,21 +359,20 @@ import Distributed

# test that the notebook file is runnable:

test_proc = Distributed.addprocs(1)[1]

Distributed.remotecall_eval(Main, test_proc, quote
test_proc = Malt.Worker()
Malt.remote_eval_wait(test_proc, quote
import Pkg
try
Pkg.UPDATED_REGISTRY_THIS_SESSION[] = true
catch; end
Pkg.activate(mktempdir())
Pkg.add("AbstractPlutoDingetjes")
end)
@test Distributed.remotecall_eval(Main, test_proc, quote
@test Malt.remote_eval_fetch(test_proc, quote
include($(notebook.path))
true
end)
Distributed.rmprocs(test_proc)
Malt.stop(test_proc)
end

@testset "Dependent Bound Variables" begin
Expand Down
4 changes: 3 additions & 1 deletion test/cell_disabling.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Test
using Pluto
using Pluto: update_run!, ServerSession, ClientSession, Cell, Notebook, set_disabled, is_disabled
using Pluto: update_run!, ServerSession, ClientSession, Cell, Notebook, set_disabled, is_disabled, WorkspaceManager



Expand Down Expand Up @@ -236,6 +236,7 @@ using Pluto: update_run!, ServerSession, ClientSession, Cell, Notebook, set_disa
update_run!(🍭, notebook, c([12]))
@test c(14).output.body == "3"

WorkspaceManager.unmake_workspace((🍭, notebook))
end


Expand Down Expand Up @@ -342,4 +343,5 @@ end
update_run!(🍭, notebook, notebook.cells)
@test get_disabled_cells(notebook) == []

WorkspaceManager.unmake_workspace((🍭, notebook))
end
2 changes: 1 addition & 1 deletion test/helpers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import Pluto.ExpressionExplorer: SymbolsState, compute_symbolreferences, Functio
using Sockets
using Test
using HTTP
import Distributed
import Pkg
import Malt
import Malt.Distributed

function Base.show(io::IO, s::SymbolsState)
print(io, "SymbolsState([")
Expand Down

0 comments on commit aeeb191

Please sign in to comment.