Move benchmarks to tests/Benchmark to avoid running with unit tests

This commit is contained in:
kemo
2026-03-16 15:01:04 +01:00
parent 5869888656
commit 134b6b0710
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -13,7 +13,7 @@
],
"config": {
"platform": {
"php" : "8.1.99"
"php": "8.1.99"
},
"process-timeout": 600,
"sort-packages": true,
@@ -120,7 +120,8 @@
"autoload-dev": {
"psr-4": {
"PhpOffice\\PhpSpreadsheetTests\\": "tests/PhpSpreadsheetTests",
"PhpOffice\\PhpSpreadsheetInfra\\": "infra"
"PhpOffice\\PhpSpreadsheetInfra\\": "infra",
"PhpOffice\\PhpSpreadsheetBenchmarks\\": "tests/Benchmark"
}
}
}
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Benchmark;
namespace PhpOffice\PhpSpreadsheetBenchmarks;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Spreadsheet;