Browse Source

vs config

gc-server3 1 year ago
parent
commit
15a3f4251d
4 changed files with 36 additions and 18 deletions
  1. 1 1
      .vscode/launch.json
  2. 13 0
      .vscode/settings.json
  3. 17 17
      config/nasa_config.json
  4. 5 0
      tox.ini

+ 1 - 1
.vscode/launch.json

@@ -6,7 +6,7 @@
     "configurations": [
         {
             "name": "Python: Current File",
-            "type": "python",
+            "type": "debugpy",
             "request": "launch",
             "program": "${file}",
             "console": "integratedTerminal",

+ 13 - 0
.vscode/settings.json

@@ -0,0 +1,13 @@
+{
+    "[python]": {
+        "editor.defaultFormatter": "ms-python.black-formatter",
+        "editor.formatOnSave": true,
+    },
+    "python.testing.pytestEnabled": false,
+    "python.testing.unittestEnabled": true,
+    "black-formatter.args": ["--line-length", "120"],
+    "files.associations": {
+        "*.mac": "vbs"
+    },
+    "python.testing.autoTestDiscoverOnSaveEnabled": false,
+}

+ 17 - 17
config/nasa_config_.json → config/nasa_config.json

@@ -1,18 +1,18 @@
-{
-    "service_url": "https://nasa.macs-online.com/services/MacsAfterSalesAnalyseTest.wsdl",
-    "credentials": {
-        "token": "MDDq3CUd9ix0iSqR",
-        "username": "global-cube", 
-        "password": "ATPoIL*O6*%1BE%-"
-    },
-    "client_id": "11197",
-    "selected_year": "2020",
-    "selected_month": "05",
-    "source_dsn": { 
-        "server": "GC-SERVER1\\GLOBALCUBE", 
-        "user": "sa", 
-        "pass": "Mffu3011#", 
-        "database": "GAPS", 
-        "schema": "dbo" 
-    }
+{
+    "service_url": "https://nasa.macs-online.com/services/MacsAfterSalesAnalyseTest.wsdl",
+    "credentials": {
+        "token": "MDDq3CUd9ix0iSqR",
+        "username": "global-cube", 
+        "password": "ATPoIL*O6*%1BE%-"
+    },
+    "client_id": "11197",
+    "selected_year": "2020",
+    "selected_month": "05",
+    "source_dsn": { 
+        "server": "GC-SERVER1\\GLOBALCUBE", 
+        "user": "sa", 
+        "pass": "Mffu3011#", 
+        "database": "GAPS", 
+        "schema": "dbo" 
+    }
 }

+ 5 - 0
tox.ini

@@ -0,0 +1,5 @@
+[flake8]
+ignore = E203, E712, W503, W504
+max-line-length = 140
+# exclude = tests/*
+# max-complexity = 10