Whether the app is running in a testing environment. Returns: True if the app is running in under pytest.
()
| 836 | |
| 837 | |
| 838 | def is_testing_env() -> bool: |
| 839 | """Whether the app is running in a testing environment. |
| 840 | |
| 841 | Returns: |
| 842 | True if the app is running in under pytest. |
| 843 | """ |
| 844 | return constants.PYTEST_CURRENT_TEST in os.environ |
| 845 | |
| 846 | |
| 847 | def is_in_app_harness() -> bool: |
no outgoing calls
no test coverage detected