From 3188c978c9c964a89ebb860e34595d4e06d36bc0 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Wed, 6 Sep 2017 15:46:31 +0200 Subject: [PATCH] Fixing 'ValueError: Attempted relative import in non-package' --- bin/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run_tests.py b/bin/run_tests.py index 98e5eb49..59ac48d7 100755 --- a/bin/run_tests.py +++ b/bin/run_tests.py @@ -4,7 +4,7 @@ from __future__ import print_function import os, sys, subprocess, shutil, json from glob import glob -from . import run_test +import run_test if __name__ == '__main__': # move cwd to the project root