Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Begin creating metrics from measures with
create_metric = True
This likely won't be the final implementation, but a stepping stone. The reason for that is: THIS DOESN'T ACCOUNT FOR PARTIAL PARSING. Not accounting for partial parsing is problematic. There are 3 specific cases that we need to keep in mind / figure out: 1. What happens when a measure maintains `create_metric = True` and partial parsing happens? With this current workflow, a parsing error is raised because the measure tries to create the metric again as it has no way to know a metric has already been created 2. What happens when a measure changes from `create_metric = True` to `create_metric = False` and partial parsing happens?? With this current workflow, the metric will continue to exist because it doesn't know to check if a metric needs to be removed, or even how to check for that case. 3. What happens when a measure changes from `create_metric = False` to `create_metric = True` and partial parsing? With the current workflow, the metric gets created, which is what we want.
- Loading branch information