Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/performance/api/test.py')
-rw-r--r--tests/performance/api/test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/performance/api/test.py b/tests/performance/api/test.py
index 23459b4b421..7e8193d2c21 100644
--- a/tests/performance/api/test.py
+++ b/tests/performance/api/test.py
@@ -4,6 +4,7 @@ import abc
import fnmatch
from typing import Dict, List
+
class Test:
@abc.abstractmethod
def name(self) -> str:
@@ -29,6 +30,7 @@ class Test:
Execute the test and report results.
"""
+
class TestCollection:
def __init__(self, env, names_filter: List=['*'], categories_filter: List=['*']):
import importlib