File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,8 @@ jobs:
115
115
- name : Install miniumum versions
116
116
uses : jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
117
117
- name : Run the unit tests
118
- run : hatch run test:nowarn || hatch run test:nowarn --lf
118
+ run : |
119
+ pytest -vv -W default || pytest -vv -W default --lf
119
120
120
121
test_prereleases :
121
122
name : Test Prereleases
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ dependencies = [
30
30
" anyio>=3.1.0,<4" ,
31
31
" argon2-cffi" ,
32
32
" jinja2" ,
33
- " jupyter_client>=6.1.12 " ,
34
- " jupyter_core>=4.7.0 " ,
33
+ " jupyter_client>=7.2 " ,
34
+ " jupyter_core>=4.9.2 " ,
35
35
" jupyter_server_terminals" ,
36
36
" nbconvert>=6.4.4" ,
37
37
" nbformat>=5.2.0" ,
@@ -136,12 +136,12 @@ testpaths = [
136
136
]
137
137
timeout = 100
138
138
# Restore this setting to debug failures
139
- # timeout_method = "thread"
139
+ timeout_method = " thread"
140
140
filterwarnings = [
141
141
" error" ,
142
142
" ignore:Passing a schema to Validator.iter_errors:DeprecationWarning" ,
143
143
" ignore:run_pre_save_hook is deprecated:DeprecationWarning" ,
144
- " always:unclosed <socket.socket:ResourceWarning " ,
144
+
145
145
" module:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning" ,
146
146
]
147
147
You can’t perform that action at this time.
0 commit comments