Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fu committed Apr 11, 2022
1 parent eb2fcc9 commit 80a1a7e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/plotlytest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ html"""<hr>"""
md"""
begin
using Pkg
Pkg.activate(joinpath(@__DIR__,".testenv"))
Pkg.activate(@__DIR__)
using Revise
end
""";
Expand Down
2 changes: 1 addition & 1 deletion examples/plutovista.jl
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ html"""<hr>"""
md"""
begin
using Pkg
Pkg.activate(joinpath(@__DIR__,".testenv"))
Pkg.activate(@__DIR__)
using Revise
end
""";
Expand Down
6 changes: 3 additions & 3 deletions examples/vtktest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ html"""<hr>"""
# ╔═╡ 08980845-f030-4a64-a4b2-ab027b3a2721
md"""
begin
using Pkg
Pkg.activate(joinpath(@__DIR__,".testenv"))
using Revise
using Pkg
Pkg.activate(@__DIR__)
using Revise
end
""";

Expand Down
8 changes: 8 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
ExtendableGrids = "cfc395e8-590f-11e8-1f13-43a2532b2fa8"
GridVisualize = "5eed8a63-0fb0-45eb-886d-8d5a387d12b8"
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781"
PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
SimplexGridFactory = "57bfcd06-606e-45d6-baf4-4ba06da0efd5"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TetGen = "c5d3f3f7-f850-59f6-8a2e-ffc6dc1317ea"
Triangulate = "f7e6ffb2-c36d-4f8f-a77e-16e897189344"

2 comments on commit 80a1a7e

@j-fu
Copy link
Owner Author

@j-fu j-fu commented on 80a1a7e Apr 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/58371

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.13 -m "<description of version>" 80a1a7e1b79e4ec9c56d0b688c6dad7551b0e6bb
git push origin v0.8.13

Please sign in to comment.