File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 25
25
strategy :
26
26
matrix :
27
27
os :
28
- - " ubuntu-22 .04"
28
+ - " ubuntu-24 .04"
29
29
- " windows-2022"
30
- - " macos-12 "
30
+ - " macos-14 "
31
31
python-version :
32
32
- " 3.8"
33
33
- " 3.9"
61
61
env :
62
62
COVERAGE_XML_PATH : ${{ runner.temp }}
63
63
BABEL_TOX_EXTRA_DEPS : pytest-github-actions-annotate-failures
64
- - uses : codecov/codecov-action@v4
64
+ - uses : codecov/codecov-action@v5
65
65
with :
66
66
directory : ${{ runner.temp }}
67
67
flags : ${{ matrix.os }}-${{ matrix.python-version }}
Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/astral-sh/ruff-pre-commit
3
- rev : v0.5.1
3
+ rev : v0.8.2
4
4
hooks :
5
5
- id : ruff
6
6
args :
7
7
- --fix
8
8
- repo : https://github.com/pre-commit/pre-commit-hooks
9
- rev : v4.6 .0
9
+ rev : v5.0 .0
10
10
hooks :
11
11
- id : check-added-large-files
12
12
- id : check-docstring-first
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ def setUp(self):
65
65
66
66
def assertEqualTypeToo (self , expected , result ):
67
67
assert expected == result
68
- assert type (expected ) == type (result ), f"instance types do not match: { type (expected )!r} !={ type (result )!r} "
68
+ assert type (expected ) is type (result ), f"instance types do not match: { type (expected )!r} !={ type (result )!r} "
69
69
70
70
def test_pgettext (self ):
71
71
self .assertEqualTypeToo ('Voh' , self .translations .gettext ('foo' ))
You can’t perform that action at this time.
0 commit comments