Skip to content

Commit

Permalink
WORKING 1 PR
Browse files Browse the repository at this point in the history
  • Loading branch information
aranabhat committed Jan 23, 2025
1 parent 550b397 commit f0388c0
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
35 changes: 34 additions & 1 deletion DM-47418.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,38 @@
"path": "."
}
],
"settings": {}
"settings": {
"editor.rulers": [
79,
110
],
"files.exclude": {
"**/__pycache__": true,
"**/.coverage.*": true,
"**/.pytest_cache": true,
"**/.sconf_temp": true,
"**/.sconsign.dblite": true,
"**/.tests": true,
"**/*.o": true,
"**/*.os": true
},
"files.watcherExclude": {
"**/__pycache__": true
},
"trailing-spaces.trimOnSave": true,
"restructuredtext.linter.extraArgs": [
"--ignore D001"
],
"[restructuredtext]": {
"editor.wordWrap": "wordWrapColumn",
},
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"search.useGlobalIgnoreFiles": true,
"python.dataScience.enabled": false,
"latex-workshop.latex.external.build.command": "make",
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
}
}
}
1 change: 1 addition & 0 deletions python/lsst/ci/prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,7 @@ def get_github_prs(self, owner, repo):

async def list_non_default_refs_prs(self):
"""List all PRs for non-default git refs and matching head refs"""

pr_info_file = os.path.join(self.build_dir, 'pr_info.json')
for product_name, product in self.product_index.items():
assert product.ref is not None
Expand Down

0 comments on commit f0388c0

Please sign in to comment.