Skip to content

Commit

Permalink
test python v3.9, bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchelbaker-cisa committed Aug 1, 2024
1 parent bf49bad commit d6bdb8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
python-version: [3.12]
python-version: [3.9, 3.12]
runs-on: ${{ matrix.os }}
environment: Development
steps:
Expand Down
2 changes: 1 addition & 1 deletion Testing/Functional/SmokeTests/smoke_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def get_output_path() -> str:
return os.path.join(os.getcwd(), directories[0])

def prepend_file_protocol(path: str) -> str:
if not path.startsWith("file://"):
if not path.startswith("file://"):
path = "file://" + path
return path

Expand Down

0 comments on commit d6bdb8c

Please sign in to comment.