can't get these to pass on GH actions anymore,
something has changed.
Change-Id: Iecd78b7f959def69b0a016f8341fef035a0d6d39
description="running on Windows",
)
+ @property
+ def only_linux(self):
+ return exclusions.only_if(self._running_on_linux())
+
+ def _running_on_linux(self):
+ return exclusions.LambdaPredicate(
+ lambda: platform.system() == "Linux",
+ description="running on Linux",
+ )
+
@property
def timing_intensive(self):
from . import config
gc.collect() is called, as well as clean out unreferenced subclasses.
"""
- return self.cpython
+ return self.cpython + self.only_linux
@property
def no_coverage(self):
gc.collect() is called, as well as clean out unreferenced subclasses.
"""
- return self.cpython + skip_if("+aiosqlite")
+ return self.cpython + self.only_linux + skip_if("+aiosqlite")
@property
def memory_process_intensive(self):