We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d109a1a commit 1ba9a84Copy full SHA for 1ba9a84
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