# pytest-cov directories
.coverage
cov_html/

# cache files
/.cache/

# python
.pyc
__pycache__/

# notebooks
.ipynb_checkpoints/

# terraform
**/.terraform/*
*.tfstate*
# Exclude all .tfvars files, which are likely to contain sentitive data, such as
# password, private keys, and other secrets. These should not be part of version
# control as they are data points which are potentially sensitive and subject
# to change depending on the environment.
*.tfvars

# virtualenv
.venv/

# Builds
/dist/
/build/
*.egg-info/

# Sql
# temporary SQL files (generated by sql_replacer.py in Composer-Edw)
temp_*.sql

# Mac creates this
.DS_Store

# Pycharm IDE creates this
.idea/

# IntelliJ IDE creates this
/*.iml

# Atom IDE creates this
.ropeproject/

# VSCode IDE creates this
# .vscode/  Don't exclude this because it contains settings for debugging, running code, and tests.
