We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3c0c156 + 4dc4be0 commit ce291dbCopy full SHA for ce291db
2 files changed
README.md
@@ -31,14 +31,16 @@ Decorate your unittest class with `@perf_unit_test_class` to turn standard unit
31
from perf_unit import perf_unit_test_class
32
import unittest
33
34
-@perf_unit_test_class
+@perf_unit_test_class()
35
class MyTestCase(unittest.TestCase):
36
37
def test_example1(self):
38
# Your test code here
39
+ pass
40
41
def test_example2(self):
42
# Another test code
43
44
45
if __name__ == '__main__':
46
unittest.main()
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "python-perf-unit"
3
-version = "0.0.1a"
+version = "0.0.1-alpha"
4
description = "Decorators and utilities for python performance unit testing"
5
authors = ["Eldad Uzman <eldadu1985@gmail.com>"]
6
license = "MIT"
0 commit comments