Skip to content

Commit

Permalink
shutil instead of distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
wkarwacki committed Jul 30, 2024
1 parent 0886377 commit a0f726b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/integration/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import pathlib
import shutil
import subprocess
from distutils.dir_util import copy_tree
from pydantic import BaseModel


Expand Down Expand Up @@ -72,7 +71,7 @@ class Spec(BaseModel):

gen_path=f"{test_integration_path}/gens/{gen.lang}/{gen.role}"
subprocess.run(f"{gen_path }/build.sh")
copy_tree(gen_path, run_path)
shutil.copytree(gen_path, run_path)

for server in servers:
for client in clients:
Expand Down

0 comments on commit a0f726b

Please sign in to comment.