-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release for new Julia LTS. Extended tests: Aqua, Jet, ExplicitImports…
…, TestRunner
- Loading branch information
Showing
15 changed files
with
207 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
style = "sciml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
name = "BibInternal" | ||
uuid = "2027ae74-3657-4b95-ae00-e2f7d55c3e64" | ||
authors = ["azzaare"] | ||
version = "0.3.6" | ||
version = "0.3.7" | ||
|
||
[deps] | ||
TestItems = "1c621080-faea-4a02-84b6-bbd5e436b8fe" | ||
|
||
[compat] | ||
julia = "1.6" | ||
TestItems = "1" | ||
julia = "1.10" | ||
|
||
[extras] | ||
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" | ||
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7" | ||
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a" | ||
|
||
[targets] | ||
test = ["Aqua", "ExplicitImports", "JET", "Test", "TestItemRunner"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
module BibInternal | ||
|
||
""" | ||
Abstract entry supertype. | ||
""" | ||
abstract type AbstractEntry end | ||
|
||
# Includes | ||
include("constant.jl") | ||
include("utilities.jl") | ||
include("bibtex.jl") | ||
include("entry.jl") | ||
|
||
end # module | ||
module BibInternal | ||
|
||
""" | ||
Abstract entry supertype. | ||
""" | ||
abstract type AbstractEntry end | ||
|
||
# Imports | ||
import TestItems: @testitem | ||
|
||
# Includes | ||
include("constant.jl") | ||
include("utilities.jl") | ||
include("bibtex.jl") | ||
include("entry.jl") | ||
|
||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@testset "Aqua.jl" begin | ||
# TODO: Fix the broken tests and remove the `broken = true` flag | ||
Aqua.test_all( | ||
BibInternal; | ||
ambiguities = (broken = false,), | ||
deps_compat = false, | ||
piracies = (broken = false,) | ||
) | ||
|
||
@testset "Ambiguities: BibInternal" begin | ||
Aqua.test_ambiguities(BibInternal;) | ||
end | ||
|
||
@testset "Piracies: BibInternal" begin | ||
Aqua.test_piracies(BibInternal;) | ||
end | ||
|
||
@testset "Dependencies compatibility (no extras)" begin | ||
Aqua.test_deps_compat( | ||
BibInternal; | ||
check_extras = false # ignore = [:Random] | ||
) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@testset "Look for Explicit Imports" begin | ||
@test check_no_implicit_imports(BibInternal) === nothing | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@testset "Code linting (JET.jl)" begin | ||
JET.test_package(BibInternal; target_defined_modules = true) | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@testset "TestItemRunner" begin | ||
@run_package_tests | ||
end |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.