Quellcode durchsuchen

Move Python unit tests to subdirectory

To make room for integration tests.
Rodolfo Carvalho vor 8 Jahren
Ursprung
Commit
ff8356b926
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      test/modify_yaml_tests.py

+ 1 - 1
test/modify_yaml_tests.py

@@ -5,7 +5,7 @@ import os
 import sys
 import unittest
 
-sys.path = [os.path.abspath(os.path.dirname(__file__) + "/../library/")] + sys.path
+sys.path = [os.path.abspath(os.path.dirname(__file__) + "/../../library/")] + sys.path
 
 # pylint: disable=import-error
 from modify_yaml import set_key  # noqa: E402