File tree 4 files changed +9
-3
lines changed
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
1
+ rules :
2
+ unpinned-uses :
3
+ config :
4
+ policies :
5
+ " * " : ref-pin
Original file line number Diff line number Diff line change 1
1
repos :
2
2
# Ruff mne
3
3
- repo : https://github.com/astral-sh/ruff-pre-commit
4
- rev : v0.11.5
4
+ rev : v0.11.6
5
5
hooks :
6
6
- id : ruff
7
7
name : ruff lint mne
82
82
83
83
# zizmor
84
84
- repo : https://github.com/woodruffw/zizmor-pre-commit
85
- rev : v1.5.2
85
+ rev : v1.6.0
86
86
hooks :
87
87
- id : zizmor
88
88
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ def test_show_fiff(tmp_path):
113
113
with open (bad_fname , "wb" ) as fout :
114
114
with open (raw_fname , "rb" ) as fin :
115
115
fout .write (fin .read (100000 ))
116
- with pytest .warns (RuntimeWarning , match = "Invalid tag" ):
116
+ with pytest .warns (Warning , match = ".*valid tag.* " ):
117
117
lines = show_fiff (bad_fname , output = list )
118
118
last_line = lines [- 1 ]
119
119
assert last_line .endswith (">>>>BAD @9015" )
Original file line number Diff line number Diff line change @@ -175,6 +175,7 @@ def test_time_delay():
175
175
@pytest .mark .slowtest # slow on Azure
176
176
@pytest .mark .parametrize ("n_jobs" , n_jobs_test )
177
177
@pytest .mark .filterwarnings ("ignore:Estimator .* has no __sklearn_tags__.*" )
178
+ @pytest .mark .filterwarnings ("ignore:The following error was .*__sklearn_tags__.*" )
178
179
def test_receptive_field_basic (n_jobs ):
179
180
"""Test model prep and fitting."""
180
181
# Make sure estimator pulling works
You can’t perform that action at this time.
0 commit comments