diff --git a/tests/data/hrrr/test_file_loader.py b/tests/data/hrrr/test_file_loader.py index f872286..4f6cff4 100755 --- a/tests/data/hrrr/test_file_loader.py +++ b/tests/data/hrrr/test_file_loader.py @@ -108,7 +108,7 @@ def setUp(self): subject = FileLoader( file_dir=RMETestCase.hrrr_dir.as_posix(), - config = tests.helpers.LOG_ERROR_CONFIG + config=tests.helpers.LOG_ERROR_CONFIG ) subject.start_date = RMETestCase.START_DATE subject.end_date = RMETestCase.END_DATE diff --git a/tests/helpers.py b/tests/helpers.py index a06fd7d..abfa20d 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -1,8 +1,11 @@ import os LOG_ERROR_CONFIG = { - 'logging': { 'log_level': 'ERROR' } + 'logging': { + 'log_level': 'ERROR', + } } + def skip_external_http_request(): return 'WFR_SKIP_EXTERNAL_REQUEST_TEST' in os.environ