Browse Source

update ci

quyuan 1 year ago
parent
commit
a0a9a8adfe
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tools/benchmark.py

+ 3 - 0
tools/benchmark.py

@@ -14,6 +14,9 @@ def test_cli():
     magicpdf_path = os.path.join(pdf_dev_path, "output")
     cmd = 'cd %s && export PYTHONPATH=. && find %s -type f -name "*.pdf" | xargs -I{} python magic_pdf/cli/magicpdf.py  pdf-command  --pdf {}' % (code_path, magicpdf_path)
     os.system(cmd)
+    rm_cmd = "rm -rf %s" % (pdf_res_path)
+    os.system(rm_cmd)
+    os.makedirs(pdf_res_path)
     for root, dirs, files in os.walk(pdf_res_path):
          for magic_file in files:
             for file_type in file_types: