# -*- coding: utf-8 -*- # Copyright 2009-2020 Joshua Bronson. All Rights Reserved. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. """Set up hypothesis.""" from os import getenv from hypothesis import HealthCheck, settings, unlimited MAX_EXAMPLES_DEFAULT = 200 SETTINGS = { 'max_examples': int(getenv('HYPOTHESIS_MAX_EXAMPLES') or MAX_EXAMPLES_DEFAULT), 'deadline': None, 'timeout': unlimited, 'suppress_health_check': (HealthCheck.too_slow,), } settings.register_profile('custom', **SETTINGS) settings.load_profile('custom')