Skip to content

Commit

Permalink
Merge pull request #13 from control-toolbox/auto-juliaformatter-pr
Browse files Browse the repository at this point in the history
[AUTO] JuliaFormatter.jl run
  • Loading branch information
ocots authored Sep 7, 2024
2 parents 682f17a + 86efc78 commit 4104bde
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
20 changes: 11 additions & 9 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
using Documenter

makedocs(
warnonly = :cross_references,
sitename = "Medical Resonance Imaging",
format = Documenter.HTML(
prettyurls = false,
size_threshold_ignore = ["saturation.md", "bloch-equation.md"],
assets = [
makedocs(;
warnonly=:cross_references,
sitename="Medical Resonance Imaging",
format=Documenter.HTML(;
prettyurls=false,
size_threshold_ignore=["saturation.md", "bloch-equation.md"],
assets=[
asset("https://control-toolbox.org/assets/css/documentation.css"),
asset("https://control-toolbox.org/assets/js/documentation.js"),
],
),
pages = [
pages=[
"Introduction" => "index.md",
"Bloch equation" => "bloch-equation.md",
"Saturation problem" => "saturation.md",
],
)

deploydocs(repo = "github.com/control-toolbox/medical_resonance_imaging.git", devbranch = "main")
deploydocs(;
repo="github.com/control-toolbox/medical_resonance_imaging.git", devbranch="main"
)
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using Test

#
@testset verbose = true showtiming = true "Base" begin
for name (:aqua, :default)
for name in (:aqua, :default)
@testset "$(name)" begin
test_name = Symbol(:test_, name)
include("$(test_name).jl")
Expand Down
2 changes: 1 addition & 1 deletion test/test_aqua.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ function test_aqua()
# do not warn about ambiguities in dependencies
Aqua.test_ambiguities(MedicalResonanceImaging)
end
end
end

0 comments on commit 4104bde

Please sign in to comment.