We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df5ad3c commit b2a8236Copy full SHA for b2a8236
tests/system/AutoReview/CreateNewChangelogTest.php
@@ -65,6 +65,12 @@ protected function setUp(): void
65
#[DataProvider('provideCreateNewChangelog')]
66
public function testCreateNewChangelog(string $mode): void
67
{
68
+ $output = exec('git status --porcelain | wc -l');
69
+
70
+ if ($output !== '0') {
71
+ $this->markTestIncomplete('You may have uncommited changes.');
72
+ }
73
74
$currentVersion = $this->currentVersion;
75
$newVersion = $this->incrementVersion($currentVersion, $mode);
76
0 commit comments