Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Integration Tests #326

Merged
merged 13 commits into from Nov 10, 2022
2 changes: 1 addition & 1 deletion buildstockbatch/postprocessing.py
Expand Up @@ -504,7 +504,7 @@ def combine_results(fs, results_dir, cfg, do_timeseries=True):
logger.info(f'Writing {csv_filename}')
with fs.open(csv_filename, 'wb') as f:
with gzip.open(f, 'wt', encoding='utf-8') as gf:
df.to_csv(gf, index=True, line_terminator='\n')
df.to_csv(gf, index=True, lineterminator='\n')
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍


# Write Parquet
if upgrade_id == 0:
Expand Down