Skip to content

Commit

Permalink
Reinstate CI data truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom committed Feb 6, 2024
1 parent 0ae5b47 commit 1bb3630
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/prep_for_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,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()[:1000]
with open(data, "w") as f:
f.writelines(data_truncated)


if __name__ == "__main__":
Expand Down

0 comments on commit 1bb3630

Please sign in to comment.