(tmpdir)
| 131 | import random |
| 132 | |
| 133 | def write_test_files(tmpdir): |
| 134 | os.makedirs(tmpdir) |
| 135 | for i in range(100): |
| 136 | with open(os.path.join(tmpdir, str(i)), "w") as f: |
| 137 | f.write("\n" * random.randint(0, 100)) |
| 138 | |
| 139 | tmpdir = "test_inputs" |
| 140 | write_test_files(tmpdir) |
no test coverage detected