blob: 8844bb63e6614d58708318b40d731e6dfab7e69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- coding: utf-8 -*-
# quick.tests minus compiler tests.
from tests.quick import profile
from framework.test import GLSLParserTest
__all__ = ['profile']
# Remove all parser tests, as they are compiler test
profile.filter_tests(lambda p, t: not isinstance(t, GLSLParserTest))
profile.filter_tests(lambda n, _: not n.startswith('asmparsertest'))
|