appwrite/tests/e2e/Services/VCS/VCSBase.php

18 lines
307 B
PHP
Raw Normal View History

2023-10-09 09:45:36 +00:00
<?php
namespace Tests\E2E\Services\VCS;
2024-04-01 11:02:47 +00:00
use Utopia\System\System;
2023-10-27 14:08:33 +00:00
2023-10-09 09:45:36 +00:00
trait VCSBase
{
2023-10-27 14:13:07 +00:00
protected function setUp(): void
{
parent::setUp();
2024-04-01 11:02:47 +00:00
if (System::getEnv('_APP_VCS_GITHUB_PRIVATE_KEY') === 'disabled') {
2023-10-27 14:13:07 +00:00
$this->markTestSkipped('VCS is not enabled.');
}
2023-10-27 14:08:33 +00:00
}
2023-10-09 09:45:36 +00:00
}