# HG changeset patch # User fubar # Date 1622695483 0 # Node ID 0b622237ddfb09f4e4b03159033c5cf2fe965cfc # Parent d6fb2ee61c2c0aa19b91fe8dc37224ca8450364d Uploaded diff -r d6fb2ee61c2c -r 0b622237ddfb planemo_test/planemo_test.xml --- a/planemo_test/planemo_test.xml Thu Jun 03 04:43:09 2021 +0000 +++ b/planemo_test/planemo_test.xml Thu Jun 03 04:44:43 2021 +0000 @@ -4,7 +4,6 @@ Test and finalise a toolshed archive rpyc - rsync lxml @@ -28,21 +27,6 @@ import subprocess import sys - -def run_rsync(srcf, dstf): - src = os.path.abspath(srcf) - dst = os.path.abspath(dstf) - if os.path.isdir(src): - cll = ["rsync", "-r", src, dst] - else: - cll = ["rsync", src, dst] - subprocess.run( - cll, - capture_output=False, - encoding="utf8", - shell=False, - ) - def main(): assert len(sys.argv) >= 3, 'Must have input xml and output archive paths on command line' xmlin = sys.argv[1]