blob: d283a577c281264eafaadb8099b92dbd4b2ad60a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""A profile that runs only ShaderTest instances."""
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
from framework.test.shader_test import ShaderTest, MultiShaderTest
from tests.all import profile as _profile
__all__ = ['profile']
profile = _profile.copy() # pylint: disable=invalid-name
profile.filters.append(lambda _, t: isinstance(t, (ShaderTest, MultiShaderTest)))
|