File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -231,6 +231,12 @@ from being registered so its hooks won't be registered and its command line opti
231
231
Changelog
232
232
--------------
233
233
234
+ v1.1.1 (2024-01-20)
235
+ +++++++++++++++++++
236
+
237
+ * Fixes #54 - ``AttributeError `` when cacheprovider plugin disabled. Thanks @jhanm12
238
+
239
+
234
240
v1.1.0 (2022-12-03)
235
241
+++++++++++++++++++
236
242
Original file line number Diff line number Diff line change 9
9
10
10
11
11
def process_failed_first_last_failed (session , config , items ):
12
+ if not hasattr (config , 'cache' ):
13
+ return
14
+
12
15
if not config .getoption ('failedfirst' ):
13
16
return
14
17
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def read(fname):
14
14
15
15
setup (
16
16
name = 'pytest-random-order' ,
17
- version = '1.1.0 ' ,
17
+ version = '1.1.1 ' ,
18
18
author = 'Jazeps Basko' ,
19
19
author_email = 'jazeps.basko@gmail.com' ,
20
20
maintainer = 'Jazeps Basko' ,
You can’t perform that action at this time.
0 commit comments