Skip to content

Commit

Permalink
add runTest.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasnorre committed Oct 17, 2024
1 parent 77e5964 commit 5af3506
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
mysql:
- '8.0'
include:
- typo3: ^13.4
php: 8.3
mysql: 8.0
- typo3: '^13.4'
php: '8.3'
mysql: '8.0'

steps:
- name: Set up MySQL ${{ matrix.mysql }}
Expand Down
3 changes: 3 additions & 0 deletions Build/Scripts/runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ cleanRenderedDocumentationFiles() {
echo "done"
}

<<<<<<< HEAD

=======
>>>>>>> 170e632 (add runTest.sh)
handleDbmsOptions() {
# -a, -d, -i depend on each other. Validate input combinations and set defaults.
case ${DBMS} in
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/ProcessRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
/**
* @internal since v9.2.5
*/
class ProcessRepository extends Repository
class ProcessRepository
{
final public const TABLE_NAME = 'tx_crawler_process';

Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/QueueRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* @internal since v9.2.5
*/
class QueueRepository extends Repository implements LoggerAwareInterface
class QueueRepository implements LoggerAwareInterface
{
use LoggerAwareTrait;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public function addProcessAddProcess(): void

self::assertEquals(true, $process['active']);

self::assertGreaterThan(time(), $process['ttl']);
self::assertGreaterThanOrEqual(time(), $process['ttl']);

self::assertEquals($systemProcessId, $process['system_process_id']);
}
Expand Down

0 comments on commit 5af3506

Please sign in to comment.