diff --git a/tests/resources/example_data.tar.gz b/tests/resources/example_data.tar.gz index 443387c21b..45f58cfcdb 100644 Binary files a/tests/resources/example_data.tar.gz and b/tests/resources/example_data.tar.gz differ diff --git a/tests/resources/rebuild_example_data b/tests/resources/rebuild_example_data index c33cd2a385..62ee1706f4 100755 --- a/tests/resources/rebuild_example_data +++ b/tests/resources/rebuild_example_data @@ -164,13 +164,11 @@ def main(ctx, rebuild_input): ) # move the new results to the expected path - # note that new_perf_path will be cleaned up dataframe_cache on - # exit. shutil.rmtree(expected_perf_path) shutil.copytree(new_perf_path, expected_perf_path) - with tarfile.open(example_path, 'w|gz') as tar: - tar.add(d.getpath('example_data'), 'example_data') + with tarfile.open(example_path, 'w|gz') as tar: + tar.add(d.getpath('example_data'), 'example_data') if __name__ == '__main__':