summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2020-08-14 19:45:58 +0100
committerMike Holmes <mike.holmes@linaro.org>2020-08-14 19:45:58 +0100
commita56799eb643e349e04802a43fc939ebdff40261a (patch)
treef6785ec68910c687f81a2079872b1df591a1bbb2
parent0742edd1b16460b9a2c2280f9e71ea1505f3c1b3 (diff)
Correctly filter projects
-rw-r--r--project_dependance.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/project_dependance.py b/project_dependance.py
index 4bb19a1..7a3af7b 100644
--- a/project_dependance.py
+++ b/project_dependance.py
@@ -134,6 +134,7 @@ url="https://docs.google.com/spreadsheets/d/e/2PACX-1vSGKF1LA9ONNq1S3ZTb-7hk-kJ7
team_project = pd.read_csv(url)
team_project = filter_node(team_project, args.filter_list)
team_project = include_project_node(team_project, args.include_project_list)
+team_project = include_team_node(team_project, args.include_team_list)
#Engineers in JIRA - Governing Entitiy
#Governing Entity | project
@@ -147,7 +148,7 @@ governing_project = include_project_node(governing_project, args.include_project
url ="https://docs.google.com/spreadsheets/d/e/2PACX-1vSGKF1LA9ONNq1S3ZTb-7hk-kJ7XlXdVQKDFmFJbTpLa0u_cVqTTjHkA8TdxougbN_DvmdiVbsZJ9UY/pub?gid=1268085837&single=true&output=csv"
department_team_type = pd.read_csv(url)
department_team_type = filter_node(department_team_type, args.filter_list)
-department_team_type = include_team_node(department_team_type, args.include_project_list)
+department_team_type = include_team_node(department_team_type, args.include_team_list)
#Engineers in JIRA - Project Link types
@@ -163,7 +164,7 @@ url = "https://docs.google.com/spreadsheets/d/e/2PACX-1vSGKF1LA9ONNq1S3ZTb-7hk-k
company_project = pd.read_csv(url)
company_project = filter_node(company_project, args.filter_list)
company_project = include_company_node(company_project, args.include_company_list)
-
+company_project = include_project_node(company_project, args.include_project_list)