summaryrefslogtreecommitdiff
path: root/MANIFEST.in
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2014-03-24 18:46:36 +0100
committerDirk Mueller <dirk@dmllr.de>2014-03-24 18:46:36 +0100
commit75d03a575b1f116d78fe256eaa2d1801b115a875 (patch)
tree8571c33cad53315e9c020b72613bfb2991f89ad8 /MANIFEST.in
parent0fb0dfdf4111d449685b2a4abfb8f8cc8074fd7f (diff)
downloadkeystone-75d03a575b1f116d78fe256eaa2d1801b115a875.tar.gz
Create TMPDIR for tests recursively
keystone/tests/tmp is missing in the sdist tarballs, so we need to not only create keystone/tests/tmp/<pid> but also the parent directory. Use os.makedirs for that. Change-Id: I2f97bee517297b9fa239183c23ad1dfa52505bc9 Closes-Bug: #1296862
Diffstat (limited to 'MANIFEST.in')
-rw-r--r--MANIFEST.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 9c59a76b4..fa69c1aa3 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -20,4 +20,4 @@ graft keystone/tests
graft tools
graft examples
recursive-include keystone *.json *.xml *.cfg *.pem README *.po *.pot *.sql
-global-exclude *.pyc *.sdx *.log *.db *.swp tests/tmp/*
+global-exclude *.pyc *.sdx *.log *.db *.swp keystone/tests/tmp/*