diff --git a/resources/test.json b/resources/test.json index eb0d7d7..9b9d2fc 100644 --- a/resources/test.json +++ b/resources/test.json @@ -1,5 +1,17 @@ { "app": { + "live": { + "no_restriction": { + "hours_range": [ + 0, + 24 + ], + "days_range": [ + 0, + 6 + ] + } + }, "develop": { "no_restriction": { "hours_range": [ diff --git a/tests/test_api.py b/tests/test_api.py index 8c8ca86..e25365b 100755 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -775,4 +775,4 @@ def test_api_set_note_non_existing_gate(self): unittest.main() if (__name__ == 'test_api') or (__name__ == 'tests.test_api'): - environment = 'local' + environment = 'test' diff --git a/tests/test_business_rules.py b/tests/test_business_rules.py index 7613009..96ac056 100755 --- a/tests/test_business_rules.py +++ b/tests/test_business_rules.py @@ -138,4 +138,4 @@ def test_global_rules_weekend(self): unittest.main() if (__name__ == 'test_business_rules') or (__name__ == 'tests.test_business_rules'): - environment = 'local' \ No newline at end of file + environment = 'test' \ No newline at end of file