Project Euler Solutions
Namespaces | Functions | Variables
test_euler.py File Reference

Namespaces

 python.test_euler
 

Functions

def python.test_euler.key (request)
 
def python.test_euler.test_groupwise
 
def python.test_euler.test_is_prime
 
def python.test_euler.test_problem
 

Variables

 python.test_euler.PY_FOLDER = pathlib.Path(__file__).parent
 
dictionary python.test_euler.answers
 
dictionary python.test_euler.known_slow = {73, 76, 118, 145, 357}
 
 python.test_euler.IN_TERMUX = bool(shutil.which('termux-setup-storage'))
 
 python.test_euler._raw_NO_SLOW = os.environ.get('NO_SLOW')
 
 python.test_euler._parsed_NO_SLOW = _raw_NO_SLOW
 
 python.test_euler._raw_ONLY_SLOW = os.environ.get('ONLY_SLOW')
 
 python.test_euler._parsed_ONLY_SLOW = _raw_ONLY_SLOW
 
 python.test_euler._raw_NO_OPTIONAL_TESTS = os.environ.get('NO_OPTIONAL_TESTS')
 
 python.test_euler._parsed_NO_OPTIONAL_TESTS = _raw_NO_OPTIONAL_TESTS
 
tuple python.test_euler.NO_SLOW = ((IN_TERMUX and _parsed_NO_SLOW is None) or _parsed_NO_SLOW)andnot_parsed_ONLY_SLOW
 
 python.test_euler.ONLY_SLOW = _parsed_ONLY_SLOWandnot_parsed_NO_SLOW
 
tuple python.test_euler.NO_OPTIONAL_TESTS = (_parsed_NO_OPTIONAL_TESTS is None and ONLY_SLOW)or_parsed_NO_OPTIONAL_TESTS
 
 python.test_euler.params