mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for tests
This commit is contained in:
parent
fe2dbebdf5
commit
777c3d5d66
8
tests/ci
8
tests/ci
@ -28,10 +28,10 @@ $tests = \Illuminate\Support\Str::of($process->getOutput())
|
||||
))
|
||||
->filter(fn (string $test) => !empty($test)) // Make sure there are no empty lines
|
||||
->unique() // We only need unique classes
|
||||
->split(10)
|
||||
->get(1);
|
||||
// ->split((int) getenv('CI_NODE_TOTAL')) // Split it into equally sized chunks
|
||||
// ->get((int) getenv('CI_NODE_INDEX')); // Get the index we need for this instance
|
||||
// ->split(10)
|
||||
// ->get(1);
|
||||
->split((int) getenv('CI_NODE_TOTAL')) // Split it into equally sized chunks
|
||||
->get((int) getenv('CI_NODE_INDEX')); // Get the index we need for this instance
|
||||
|
||||
/**
|
||||
* Run phpunit with a filter:
|
||||
|
Loading…
x
Reference in New Issue
Block a user