allow index.TestCase to work when run using any path

This commit is contained in:
Hans-Christoph Steiner 2017-04-03 19:19:37 +02:00
parent e58ad330f4
commit 53b69f507e
1 changed files with 9 additions and 0 deletions

View File

@ -1,9 +1,18 @@
#!/usr/bin/env python3
import inspect
import optparse
import os
import sys
import unittest
import zipfile
localmodule = os.path.realpath(
os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), '..'))
print('localmodule: ' + localmodule)
if localmodule not in sys.path:
sys.path.insert(0, localmodule)
import fdroidserver.common
import fdroidserver.index
import fdroidserver.signindex