Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b87dcea
Added golden file & modified validation config
niveditasing May 24, 2026
a4de526
Merge branch 'master' into implemented_goldens_eurostatdata_fertility
niveditasing May 25, 2026
9a62edd
implemented golden checks
niveditasing May 25, 2026
0e14b02
implemented golden checks
niveditasing May 25, 2026
03614e7
fixed format
niveditasing May 27, 2026
7ef76f1
Merge branch 'master' into implemented_goldens_eurostatdata_fertility
niveditasing May 27, 2026
bfdb63f
testing
niveditasing Jun 5, 2026
b446f71
modified code
niveditasing Jun 8, 2026
0467ef8
Revert validation_config.py changes and update validator_goldens.py
niveditasing Jun 8, 2026
b57b3b9
testing
niveditasing Jun 8, 2026
da4bdf4
testing
niveditasing Jun 9, 2026
fc0995b
Merge branch 'master' into implemented_goldens_eurostatdata_fertility
niveditasing Jun 9, 2026
9b40a89
testing
niveditasing Jun 9, 2026
57d6224
testing
niveditasing Jun 9, 2026
60aa7ac
testing
niveditasing Jun 9, 2026
2c47b69
Remove golden_observations.csv from tracking
niveditasing Jun 10, 2026
92012ce
testing
niveditasing Jun 10, 2026
b9ed4e9
Revert changes to runner.py and validator_goldens.py
niveditasing Jun 14, 2026
c497ad6
Merge branch 'master' into implemented_goldens_eurostatdata_fertility
niveditasing Jun 14, 2026
ee5ab93
testing
niveditasing Jun 15, 2026
559c8b6
testing
niveditasing Jun 15, 2026
a16ae77
Revert changes to runner.py to remove them from PR
niveditasing Jun 15, 2026
e8e3afd
testing
niveditasing Jun 23, 2026
d8bbf7b
testing
niveditasing Jun 24, 2026
693d4bb
testing
niveditasing Jun 24, 2026
9c48d8d
testing
niveditasing Jun 24, 2026
273dc1a
testing
niveditasing Jun 24, 2026
add4581
Revert changes to tools/import_validation/runner.py to remove it from PR
niveditasing Jun 24, 2026
3a3b097
modified json file
niveditasing Jun 24, 2026
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"MeasurementMethods","MinDate","NumPlaces","ScalingFactors","StatVar","Units","observationPeriods"
"[EurostatRegionalStatistics]","2013","2122","[]","MeanMothersAge_BirthEvent","[Year]","[]"
"[EurostatRegionalStatistics]","2013","2122","[]","MedianMothersAge_BirthEvent","[Year]","[]"
"[EurostatRegionalStatistics]","2013","2122","[]","FertilityRate_Person_Female","[]","[]"
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@
"description": "Checks that the percentage of deleted points is within the threshold.",
"validator": "DELETED_RECORDS_PERCENT",
"params": {
"threshold": 0.01
"threshold": 0.1
}
},
{
"rule_id": "check_goldens_summary_report",
"validator": "GOLDENS_CHECK",
"params": {
"golden_files": "../../../../golden_data/golden_summary_report.csv"
}
}
]
Expand Down
Loading