Coverage for /Users/jerry/Development/yenta/yenta/config/settings.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1import os 

2 

3from pathlib import Path 

4 

5 

6YENTA_STORE_PATH = Path('./.yenta_cache').resolve() 

7YENTA_ENTRY_POINT = os.environ.get('YENTA_ENTRY_POINT', Path('./main.py')) 

8YENTA_CONFIG_FILE = os.environ.get('YENTA_CONFIG_FILE', Path('./yenta.config')) 

9YENTA_LOG_FILE = os.environ.get('YENTA_LOG_FILE', None) 

10 

11VERBOSE = False 

12