test: import relative to __init__.py

Might fix tests for Debian builders somehow maybe?
This commit is contained in:
Nicolas F 2019-08-08 21:31:41 +02:00
parent 3b96158fb4
commit bdd3b7bc16
1 changed files with 1 additions and 2 deletions

View File

@ -2,5 +2,4 @@
import sys import sys
import os import os
import os.path import os.path
sys.path.insert(0, os.getcwd()) sys.path.insert(0, os.path.join(os.path.split(__file__)[0], '..'))
sys.path.insert(0, os.path.join(os.getcwd(), os.pardir))