The tester Module
Generic object for testing for data quality issues.
Tester class contains list of tests to run on data. Tests contain a variable name, a condition, and a severity
- class Condition(value)[source]
- An enumeration. - less_than = 'lt'
 - greater_than = 'gt'
 - data_type = 'dtype'
 - no_missing = 'no_nan'
 - count_missing = 'count_nan'
 
- class Severity(value)[source]
- An enumeration. - debug = 10
 - info = 20
 - warning = 30
 - error = 40
 - critical = 50