Skip to content

Commit e4cb74c

Browse files
committed
CI must fail now
1 parent a620cbb commit e4cb74c

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 \

Lib/test/test_zoneinfo/test_zoneinfo_property.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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

Tools/requirements-hypothesis.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

0 commit comments

Comments
 (0)