KKimj / PerformanceFuzzer

PerformanceFuzzer
https://pypi.org/project/PerformanceFuzzer/
GNU General Public License v3.0
2 stars 0 forks source link

pytest-benchmark with Fuzzing #6

Closed KKimj closed 3 years ago

KKimj commented 3 years ago

https://pytest-benchmark.readthedocs.io/en/latest/pedantic.html

KKimj commented 3 years ago

https://stackoverflow.com/questions/59306904/benchmark-a-function-over-different-inputs-of-different-sizes-in-python-effici

KKimj commented 3 years ago
import time

start = time.time()
### something to run
spent_time = time.time() - start

pytest-benchmark는 한계점(특징)은 다음과 같다.