File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ jobs:
427427 # (GH-104097) test_sysconfig is skipped because it has tests that are
428428 # failing when executed from inside a virtual environment.
429429 "${VENV_PYTHON}" -m test \
430- -W \
430+ -We \
431431 --slowest \
432432 -j4 \
433433 --timeout 900 \
Original file line number Diff line number Diff line change @@ -147,10 +147,11 @@ def setUp(self):
147147 def test_pickle_unpickle_cache (self , key ):
148148 zi = self .klass (key )
149149 for proto in range (pickle .HIGHEST_PROTOCOL + 1 ):
150- pkl_str = pickle .dumps (zi , proto )
151- zi_rt = pickle .loads (pkl_str )
150+ with self .subTest (proto = proto ):
151+ pkl_str = pickle .dumps (zi , proto )
152+ zi_rt = pickle .loads (pkl_str )
152153
153- self .assertIs (zi , zi_rt )
154+ self .assertIs (zi , zi_rt )
154155
155156 @hypothesis .given (key = valid_keys ())
156157 @add_key_examples
Original file line number Diff line number Diff line change 11# Requirements file for hypothesis that
22# we use to run our property-based tests in CI.
33
4- hypothesis==6.111.2
4+ hypothesis==6.135.26
You can’t perform that action at this time.
0 commit comments