Skip to content

Commit 3e090e2

Browse files
committed
test: testing sonar cloud if it works NoTicket
1 parent 16ffe3d commit 3e090e2

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/code-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
with:
2020
ref: ${{ inputs.branch }}
2121

22-
- name: Set up Python 3.9
22+
- name: Set up Python 3.12
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: 3.9
25+
python-version: 3.12
2626

2727
- name: Install dependencies
2828
run: |

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
with:
2828
ref: ${{ inputs.branch }}
2929

30-
- name: Set up Python 3.9
30+
- name: Set up Python 3.12
3131
uses: actions/setup-python@v2
3232
with:
33-
python-version: 3.9
33+
python-version: 3.12
3434

3535
- name: Install dependencies
3636
run: |

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ repos:
3333
rev: 22.3.0
3434
hooks:
3535
- id: black
36-
language-version: 3.9
37-
36+
language_version: '3.12'
37+
3838
- repo: https://github.com/dfm/black_nbconvert
3939
rev: v0.4.0
4040
hooks:

src/firebolt/common/_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def align_ms(match: re.Match) -> str:
2222

2323
return re.sub(unsupported_milliseconds_re, align_ms, datetime_string)
2424

25+
#just testing sonar
2526
def _fix_timezone(datetime_string: str) -> str:
2627
# timezone, provided as +/-dd is not supported by datetime.
2728
# We need to append :00 to it

0 commit comments

Comments
 (0)