6264da6d7e
Feature/cost log aggregations * add costlog aggregation options * rename output variables * more descriptive error message if aggregation fails * Merged main into feature/cost_log_aggregations Approved-by: Katon Minhas
7 lines
184 B
Python
7 lines
184 B
Python
import pytest
|
|
from costlog_funcs import aggregate_costlog
|
|
import pandas as pd
|
|
|
|
def test_missing_columns():
|
|
with pytest.raises(ValueError):
|
|
aggregate_costlog(pd.DataFrame()) |