mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-21 12:19:27 +00:00
BeautifulSoup needs lxml or html5, have included html5lib. Also latest BeautifulSoup 4.1.3
13 lines
238 B
Python
13 lines
238 B
Python
import sys
|
|
import os
|
|
|
|
parent_path = os.path.abspath(os.path.join(os.path.split(__file__)[0], ".."))
|
|
|
|
if not parent_path in sys.path:
|
|
sys.path.insert(0, parent_path)
|
|
del parent_path
|
|
|
|
from runtests import buildTestSuite
|
|
|
|
import support
|