You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -192,13 +192,13 @@ infection:
192
192
193
193
.PHONY: phpbench
194
194
phpbench:
195
-
@find tests/bench/storage/baseline.xml -mtime -60m | grep .|| (echo "PHPBench baseline file is too old. Regenerate it using 'make phpbench-baseline'."&&exit 1)
195
+
@find tests/bench/storage/local-baseline.xml -mtime -60m | grep .|| (echo "PHPBench baseline file does not exist or is too old. Regenerate it using 'make phpbench-baseline'."&&exit 1)
196
196
composer require --dev phpbench/phpbench:^1.2.15
197
-
XDEBUG_MODE=off tests/vendor/bin/phpbench run --file=tests/bench/storage/baseline.xml --report=aggregate
197
+
XDEBUG_MODE=off tests/vendor/bin/phpbench run --file=tests/bench/storage/local-baseline.xml --report=aggregate
0 commit comments