Lines Matching refs:test_file
19 test_file: str
41 self.test_file, test_class = name.split("::")
44 self.test_file = name
56 return not self.test_file
76 if self.test_file != test.test_file:
98 return TestRun(self.test_file, excluded=self._excluded, included=self._included)
116 return self.test_file + ", " + pytest_filter
117 return self.test_file
123 ret = self.test_file == other.test_file
129 return hash((self.test_file, self._included, self._excluded))
144 self.test_file == other.test_file
152 return TestRun(self.test_file)
157 self.test_file, included=self._included.union(other._included)
163 self.test_file, excluded=self._excluded.intersection(other._excluded)
170 return TestRun(self.test_file, excluded=excluded - included)
184 if self.test_file != other.test_file:
193 return TestRun(self.test_file, included=inclusions)
201 self.test_file, excluded=self._excluded | other._included
210 if self.test_file != other.test_file:
217 "test_file": self.test_file,
257 return self.test.test_file