Skip to content

Commit

Permalink
Include test data into the package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Batiste Bieler committed Mar 4, 2010
1 parent 726f069 commit a08d224
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion djintegration/backends.py
Expand Up @@ -140,7 +140,7 @@ def make_report(self):
new_test = None

if self.repo.last_commit != commit or len(commit) == 0 or True:
self.repo.last_commit = commit
#self.repo.last_commit = commit

install_result, returncode1 = self.install()

Expand Down
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -9,7 +9,12 @@
import os
templates_dirs = []
for directory in os.walk('djintegration/templates'):
templates_dirs.append(directory[0][6:]+'/*.*')
templates_dirs.append(directory[0][14:]+'/*.*')

for directory in os.walk('djintegration/tests'):
templates_dirs.append(directory[0][14:]+'/*.txt')

print templates_dirs

setup(
name='djintegration',
Expand Down

0 comments on commit a08d224

Please sign in to comment.