blob: 01bca2584aaa16ffc33255350c1879bf89868e73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- coding: utf-8 -*-
# quick.tests minus compiler tests.
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
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'))
|