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

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

__all__ = ['profile']

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