We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8372668 commit 528e86cCopy full SHA for 528e86c
tools/imagesets/imgset.py
@@ -670,9 +670,12 @@ def prdocs(self):
670
671
def tartests(self):
672
"""
673
- Tar up test directories for delivery
+ Tar up test directories for delivery. PGE has requested that
674
+ the scratch directory contents be excluded from the deliveries.
675
+ Include the scratch directories only as empty directories to
676
+ maintain consistency with the runconfigs.
677
678
for workflow in workflowtests:
679
for test in workflowtests[workflow]:
680
print(f"\ntarring workflow test {test}\n")
- subprocess.check_call(f"tar cvzf {test}.tar.gz {test}".split(), cwd=self.testdir)
681
+ subprocess.check_call(f"tar cvz --exclude scratch*/* -f {test}.tar.gz {test}".split(), cwd=self.testdir)
0 commit comments