-
Notifications
You must be signed in to change notification settings - Fork 33
test_unbound_args: add a functionality to ignore specific methods #316
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
Open
arnaud-ma
wants to merge
6
commits into
JuliaTesting:master
Choose a base branch
from
arnaud-ma:ignore-keywords-unbounds-args
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a9f275a
add ignore keyword for specific methods in test_unbound_args
arnaud-ma cbe7926
rename 'ignore' keyword to 'exclude' in test_unbound_args to align wi…
arnaud-ma 549620e
handle the case of callable objects in test_unbound_args
arnaud-ma 35b2dc8
remove the test_unbound_args(unbounds) method
arnaud-ma f30844d
update the doc of test_unbound_args to align with test_ambiguities
arnaud-ma df69299
use exactly the same signature style as Julia to exclude methods in t…
arnaud-ma File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,17 +1,35 @@ | ||
| """ | ||
| test_unbound_args(module::Module) | ||
| test_unbound_args(unbounds) | ||
| Test that all methods in `module` and its submodules do not have | ||
| unbound type parameters. An unbound type parameter is a type parameter | ||
| with a `where`, that does not occur in the signature of some dispatch | ||
| of the method. | ||
| of the method. If unbounds methods are already known, they can be | ||
| passed directly to the function instead of the module. | ||
| # Keyword Arguments | ||
| - `broken::Bool = false`: If true, it uses `@test_broken` instead of | ||
| `@test` and shortens the error message. | ||
| - `ignore::Vector{Tuple{Function, DataType...}}`: A list of functions and their | ||
lgoettgens marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| signatures to ignore. The signatures are given as tuples, where the | ||
| first element is the function and the rest are the types of the | ||
| arguments. For example, to ignore `foo(x::Int, y::Float64)`, pass | ||
| `(foo, Int, Float64)`. | ||
| """ | ||
| function test_unbound_args(m::Module; broken::Bool = false) | ||
| function test_unbound_args(m::Module; broken::Bool = false, ignore = ()) | ||
| unbounds = detect_unbound_args_recursively(m) | ||
| for i in ignore | ||
| # i[2:end] is empty if length(i) == 1 | ||
| ignore_signature = Tuple{typeof(i[1]),i[2:end]...} | ||
|
||
| filter!(unbounds) do method | ||
| method.sig != ignore_signature | ||
| end | ||
| end | ||
| test_unbound_args(unbounds; broken = broken) | ||
| end | ||
|
|
||
| function test_unbound_args(unbounds; broken::Bool = false) | ||
| if broken | ||
| if !isempty(unbounds) | ||
| printstyled( | ||
|
|
||
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.