Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modularize / Rework Test suite (or: Taking structuring tests seriously, part 42) #649

Draft
wants to merge 21 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6a05d5c
A first test that you now can run the tests as a script from command …
kellertuer Aug 25, 2023
cfcf315
Sketch a new test suite.
kellertuer Sep 12, 2023
5fb31ed
Merge branch 'master' into kellertuer/modularize-tests-I
kellertuer Sep 12, 2023
50e29ef
extract the old design of a features functions
kellertuer Sep 12, 2023
f075781
Improve features run.
kellertuer Sep 19, 2023
51d4904
Merge branch 'kellertuer/manifold_features' into kellertuer/modulariz…
kellertuer Sep 20, 2023
ef5a957
Merge branch 'master' into kellertuer/modularize-tests-I
kellertuer Sep 20, 2023
2077027
Merge branch 'master' into kellertuer/modularize-tests-I
kellertuer Sep 29, 2023
beaaf8b
Merge branch 'master' into kellertuer/modularize-tests-I
kellertuer Nov 20, 2023
6a155f1
Merge branch 'master' into kellertuer/modularize-tests-I
kellertuer Jan 27, 2024
1e14f32
Merge branch 'master' into kellertuer/modularize-tests-I
kellertuer Mar 1, 2024
1466527
Fix 2 small typos.
kellertuer Apr 29, 2024
fb9a903
Merge branch 'master' into kellertuer/modularize-tests-I
kellertuer Apr 29, 2024
fc28a30
Add Aqua for a better overview.
kellertuer Apr 29, 2024
c52395d
add more compats.
kellertuer Apr 29, 2024
caf68e3
Narrow down the list of type piracy functions/types.
kellertuer Apr 29, 2024
b89cf8b
Resolve all but one Aqua error.
kellertuer Apr 29, 2024
63a393d
Update Badges.
kellertuer Apr 29, 2024
531fb20
Remove two spurious links.
kellertuer Apr 29, 2024
569725c
Collect all but a few strange ambiguities (StatsBase? Broadcast? A co…
kellertuer Apr 29, 2024
45e0051
Reduce a compat.
kellertuer Apr 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Einsum = "b7d42ee7-0b51-5a75-98ca-779d3107e4c0"
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
HybridArrays = "1baab800-613f-4b0a-84e4-9cd3431bfbb9"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Kronecker = "2c470bb0-bcc8-11e8-3dad-c9649493f05e"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
ManifoldDiff = "af67fdf4-a580-4b9f-bbec-742ef357defd"
Expand Down Expand Up @@ -84,6 +85,7 @@ PythonPlot = "274fc56d-3b97-40fa-a1cd-1b4a50311bf9"
QuartzImageIO = "dca85d43-d64c-5e67-8c65-017450d5d020"
Quaternions = "94ee1d12-ae83-5a48-8b1c-48b8ff168ae0"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
TestEnv = "1e6cf692-eddd-4d53-88a5-2d735e33781b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92"

Expand Down
4 changes: 3 additions & 1 deletion src/Manifolds.jl
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ using Base.Iterators: repeated
using Distributions
using Einsum: @einsum
using HybridArrays
using InteractiveUtils: subtypes
using Kronecker
using Graphs
using LinearAlgebra
Expand Down Expand Up @@ -362,7 +363,7 @@ using Statistics
using StatsBase
using StatsBase: AbstractWeights

include("utils.jl")
include("utils/helpers.jl")

include("product_representations.jl")

Expand Down Expand Up @@ -514,6 +515,7 @@ include("groups/rotation_translation_action.jl")

# final utilities
include("trait_recursion_breaking.jl")
include("utils/features.jl")

@doc raw"""
Base.in(p, M::AbstractManifold; kwargs...)
Expand Down
Loading
Loading