Skip to content

Commit

Permalink
#527: update validator loader url to get latest one
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Sep 9, 2024
1 parent 1ed1353 commit c16571f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Display Python environment
run: python -c 'import os;print(os.environ)'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 3 additions & 1 deletion src/lbaf/Utils/lbsJSONDataFilesValidatorLoader.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def __parse_args(self):
self.__args = parser.parse_args()

def __run(self, script_name, overwrite: Optional[bool] = None) -> int:
script_url = f"https://raw.githubusercontent.com/DARMA-tasking/vt/develop/scripts/{script_name}"
# TODO: remove after VT PR 2343 #2342 merge

Check warning on line 40 in src/lbaf/Utils/lbsJSONDataFilesValidatorLoader.py

View workflow job for this annotation

GitHub Actions / code-quality (ubuntu-latest, 3.8)

TODO: remove after VT PR 2343 #2342 merge (fixme)
script_url = "https://raw.githubusercontent.com/DARMA-tasking/vt/4741dc8e8988a3ee96afa669ec661eb42c69f62a/scripts/{script_name}"
# script_url = f"https://raw.githubusercontent.com/DARMA-tasking/vt/develop/scripts/{script_name}"
script_title = script_name.replace(".py", "").replace("_"," ")

exists = self.__is_loaded(script_name)
Expand Down

0 comments on commit c16571f

Please sign in to comment.