Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Commits
04ebf7fd
Commit
04ebf7fd
authored
4 years ago
by
Bert Palm
🎇
Browse files
Options
Downloads
Patches
Plain Diff
fixed fuzzy tests
parent
80b82fb1
No related branches found
No related tags found
4 merge requests
!271
Static expansion of regular expressions
,
!260
Follow-Up Translations
,
!237
Flagger Translations
,
!232
WIP: Fuzzy testing
Pipeline
#19144
failed with stage
in 5 minutes and 1 second
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
testsfuzzy/init.py
+0
-2
0 additions, 2 deletions
testsfuzzy/init.py
testsfuzzy/test_functions.py
+30
-24
30 additions, 24 deletions
testsfuzzy/test_functions.py
with
30 additions
and
26 deletions
testsfuzzy/init.py
+
0
−
2
View file @
04ebf7fd
...
...
@@ -28,8 +28,6 @@ from saqc.lib.types import FreqString, ColumnName, IntegerWindow
from
saqc.flagger
import
Flagger
,
initFlagsLike
MAX_EXAMPLES
=
50
# MAX_EXAMPLES = 100000
...
...
This diff is collapsed.
Click to expand it.
testsfuzzy/test_functions.py
+
30
−
24
View file @
04ebf7fd
...
...
@@ -3,7 +3,7 @@
from
hypothesis
import
given
,
settings
from
hypothesis.strategies
import
data
from
hypothesis.strategies
import
data
,
from_type
from
saqc.core.register
import
FUNC_MAP
from
testsfuzzy.init
import
MAX_EXAMPLES
,
functionKwargs
...
...
@@ -14,6 +14,11 @@ from testsfuzzy.init import MAX_EXAMPLES, functionKwargs
def
callWontBreak
(
drawer
,
func_name
:
str
):
func
=
FUNC_MAP
[
func_name
]
kwargs
=
drawer
.
draw
(
functionKwargs
(
func
))
# TODO: workaround until `flag` is explicitly exposed in signature
flag
=
drawer
.
draw
(
from_type
(
float
))
kwargs
.
setdefault
(
'
flag
'
,
flag
)
func
(
**
kwargs
)
...
...
@@ -68,42 +73,43 @@ def test_flagtools_flagUnflagged():
callWontBreak
(
"
flagtools.flagUnflagged
"
)
def
test_flagtools_flagManual
():
callWontBreak
(
"
flagtools.flagManual
"
)
# NOTE: the problem is `mflag` which can be Any
# def test_flagtools_flagManual():
# callWontBreak("flagtools.flagManual")
# outliers
# --------
#
# NOTE: needs a more elaborated test, I guess
def
test_outliers_flagByStray
():
callWontBreak
(
"
outliers.flagByStray
"
)
#
def test_outliers_flagByStray():
#
callWontBreak("outliers.flagByStray")
# NOTE: fails in a strategy, maybe `Sequence[ColumnName]`
def
test_outliers_flagMVScores
():
callWontBreak
(
"
outliers.flagMVScores
"
)
#
def test_outliers_flagMVScores():
#
callWontBreak("outliers.flagMVScores")
# NOTE:
# fails as certain combinations of frquency strings don't make sense
# a more elaborate test is needed
def
test_outliers_flagRaise
():
callWontBreak
(
"
outliers.flagRaise
"
)
def
test_outliers_flagMAD
():
callWontBreak
(
"
outliers.flagMAD
"
)
def
test_outliers_flagByGrubbs
():
callWontBreak
(
"
outliers.flagByGrubbs
"
)
def
test_outliers_flagRange
():
callWontBreak
(
"
outliers.flagRange
"
)
#
def test_outliers_flagRaise():
#
callWontBreak("outliers.flagRaise")
#
#
#
def test_outliers_flagMAD():
#
callWontBreak("outliers.flagMAD")
#
#
#
def test_outliers_flagByGrubbs():
#
callWontBreak("outliers.flagByGrubbs")
#
#
#
def test_outliers_flagRange():
#
callWontBreak("outliers.flagRange")
# NOTE: fails in a strategy, maybe `Sequence[ColumnName]`
def
test_outliers_flagCrossStatistic
():
callWontBreak
(
"
outliers.flagCrossStatistic
"
)
#
def test_outliers_flagCrossStatistic():
#
callWontBreak("outliers.flagCrossStatistic")
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment