Skip to content

Commit

Permalink
use mobile list for now
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelrios committed Feb 10, 2025
1 parent b38f32b commit 9b726e7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion testrail.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,12 @@ def testrail_run_counts_update(self, project, num_days):
def testrail_milestones(self, project='all'):
self.db.testrail_milestons_delete()

project_ids_list = self.testrail_project_ids(project)
# project_ids_list = self.testrail_project_ids(project)

# Mobile project list for Milestones until we fix Issue #55
# https://github.com/mozilla-mobile/testops-dashboard/issues/55
project_ids_list = [[1, 59], [2, 48], [3, 14], [4, 27]]

milestones_all = pd.DataFrame()

for project_ids in project_ids_list:
Expand Down

0 comments on commit 9b726e7

Please sign in to comment.