Skip to content

Commit

Permalink
Merge branch '7.1' into 7.2
Browse files Browse the repository at this point in the history
* 7.1:
  Port Appveyor to GitHub Actions
  normalize paths to avoid failures if a path is referenced by different names
  skip autocomplete test when stty is not available
  Bump Symfony version to 7.1.8
  Update VERSION for 7.1.7
  Update CHANGELOG for 7.1.7
  Bump Symfony version to 6.4.15
  Update VERSION for 6.4.14
  Update CHANGELOG for 6.4.14
  Bump Symfony version to 5.4.47
  Update VERSION for 5.4.46
  Update CONTRIBUTORS for 5.4.46
  Update CHANGELOG for 5.4.46
  • Loading branch information
nicolas-grekas committed Nov 6, 2024
2 parents 3fda7e5 + ff04e5b commit 23c8aae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/Helper/QuestionHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -908,6 +908,10 @@ public function testTraversableMultiselectAutocomplete()

public function testAutocompleteMoveCursorBackwards()
{
if (!Terminal::hasSttyAvailable()) {
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
}

// F<TAB><BACKSPACE><BACKSPACE><BACKSPACE>
$inputStream = $this->getInputStream("F\t\177\177\177");

Expand Down

0 comments on commit 23c8aae

Please sign in to comment.