From 9d3de917e9c3f97356fe53040a748faf97c4bcf5 Mon Sep 17 00:00:00 2001 From: isidentical Date: Fri, 4 Oct 2019 20:53:12 +0300 Subject: [PATCH] fix deprecation warning of attrs on NodeMarkers --- src/_pytest/mark/structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/mark/structures.py b/src/_pytest/mark/structures.py index f8cf55b4cb6..55a176b31b3 100644 --- a/src/_pytest/mark/structures.py +++ b/src/_pytest/mark/structures.py @@ -367,7 +367,7 @@ def __repr__(self): return "".format(self.node) -@attr.s(cmp=False, hash=False) +@attr.s(eq=False, order=False, hash=False) class NodeMarkers: """ internal structure for storing marks belonging to a node