From c2be0b03d34a92b1cc0301dd45f42384b9320569 Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Sat, 23 Feb 2019 20:42:29 +0100 Subject: [PATCH] test runner working --- test/sync_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sync_test.py b/test/sync_test.py index 2372e57..a20dff0 100644 --- a/test/sync_test.py +++ b/test/sync_test.py @@ -10,7 +10,6 @@ import os, pathlib, sys from optparse import OptionParser -from sync_handshake import run def test_for(path): @@ -19,6 +18,7 @@ def test_for(path): os.environ["HOME"] = os.getcwd() print("running tests for " + path); + from sync_handshake import run run() os.chdir(cwd)