diff --git a/ci/prep_for_ci.py b/ci/prep_for_ci.py index d1b530f..04469cb 100644 --- a/ci/prep_for_ci.py +++ b/ci/prep_for_ci.py @@ -13,10 +13,10 @@ def main(config: str, data: str): with open(config, "w") as f: yaml.dump(cfg, f) - with open(data) as f: - data_truncated = f.readlines()[:2000] - with open(data, "w") as f: - f.writelines(data_truncated) + # with open(data) as f: + # data_truncated = f.readlines()[:2000] + # with open(data, "w") as f: + # f.writelines(data_truncated) if __name__ == "__main__":