summaryrefslogtreecommitdiff
path: root/tests/shader.py
blob: 452f36acbddb78d8dde7d3b4ba100900e662f2d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""A profile that runs only ShaderTest instances."""

from __future__ import (
    absolute_import, division, print_function, unicode_literals
)

from framework.test import ShaderTest
from tests.all import profile

__all__ = ['profile']

profile.filter_tests(lambda _, t: isinstance(t, ShaderTest))