Browse Source

Ok, working proxy module, tests work again.

Steve Thielemann 5 years ago
parent
commit
e7335b3d5c
3 changed files with 34 additions and 2 deletions
  1. 32 0
      config.py
  2. 1 1
      proxy.py
  3. 1 1
      test_1.py

+ 32 - 0
config.py

@@ -0,0 +1,32 @@
+from subprocess import check_output
+import yaml
+import os
+
+
+def config_load(filename: str):
+    global config
+    with open(filename, "r") as fp:
+        config = yaml.safe_load(fp)
+
+
+if os.path.exists("config_dev.yaml"):
+    config_load("config_dev.yaml")
+else:
+    config_load("config.yaml")
+
+# Extract the version information from git.
+# The match gives us only tags starting with v[0-9]*  Using anything else trips up on double digits.
+version = check_output(
+    [
+        "git",
+        "describe",
+        "--abbrev=8",
+        "--long",
+        "--tags",
+        "--dirty",
+        "--always",
+        "--match",
+        "v[0-9]*",
+    ],
+    universal_newlines=True,
+).strip()

+ 1 - 1
proxy.py

@@ -12,8 +12,8 @@ import pendulum
 from colorama import Fore, Back, Style
 
 from pprint import pformat
-from __main__ import config, version
 
+from config import config, version
 
 def merge(color_string: str):
     """ Given a string of colorama ANSI, merge them if you can. """

+ 1 - 1
test_1.py

@@ -1,6 +1,6 @@
 from proxy import *
 from twisted.trial import unittest
-
+import sys
 from twisted.python import log
 
 log.startLogging(sys.stdout)