athletic icon indicating copy to clipboard operation
athletic copied to clipboard

PHP Benchmarking Framework

Results 18 athletic issues
Sort by recently updated
recently updated
newest added

I run http://stickler-ci.com which is a service aimed at improving code quality by simplifying code review by automating code style feedback in pull requests. As a fellow open source maintainer...

Today I refactored some of this package to support: - multiple benchmarking classes, such as one for time and one for memory. - custom benchmarking classes. This lets you benchmark...

Hi! I'm trying to evaluate athletic and I'm having issues getting even a simple example to run. The "sample event" from the readme is obviously not intended to be used...

The terminal should update its progress, letting us know what the status is. Really useful when you have lots of benchmarks, each taking quite a bit of time.

I'm not sure if this is really necessary in vanilla PHP, at least it won't hurt. HHVM uses a JIT and would benefit from a warm up phase.

This change introduces a new (optional) annotation `@maxRuntime`, which allows one to restrict the runtime of a benchmark method to a specified number of seconds. This is useful, if a...

Benchmarks can be paused within the benchmarking methods by calling `$this->pause()`. Execution time of code following a pause call will not affect the benchmark result. Calling `$this->resume()` will resume the...

--path is a required flag at the moment, but Athletic should default to the current working directory if none is provided by --path.

The current implementation of `Athletic\Discovery\Parser` does not allow discovered events to inherit from classes that do not contain `AthleticEvent` in their name. I'm not sure why this limitation is in...

The composer.json says the license is MIT, is there a corresponding LICENSE for this repo?