Skip to content

Commit 5d8ee31

Browse files
committed
Testing
1 parent 976b58f commit 5d8ee31

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

.github/workflows/tests.yaml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,23 @@ jobs:
3737
- name: "Checkout code"
3838
uses: actions/[email protected]
3939

40-
# Install stty required for tests
41-
- name: Install system dependencies
42-
if: matrix.operating-system == 'ubuntu-latest'
43-
run: |
44-
echo "::group::apt-get update"
45-
sudo apt-get update
46-
echo "::endgroup::"
47-
echo "::group::install tools & libraries"
48-
sudo apt-get install coreutils
49-
echo "::endgroup::"
50-
51-
- name: Debug stty
52-
if: matrix.operating-system == 'ubuntu-latest'
53-
run: stty 2>&1
40+
# # Install stty required for tests
41+
# - name: Install system dependencies
42+
# if: matrix.operating-system == 'ubuntu-latest'
43+
# run: |
44+
# echo "::group::apt-get update"
45+
# sudo apt-get update
46+
# echo "::endgroup::"
47+
# echo "::group::install tools & libraries"
48+
# sudo apt-get install coreutils
49+
# echo "::endgroup::"
50+
#
51+
# - name: Debug stty
52+
# if: matrix.operating-system == 'ubuntu-latest'
53+
# run: stty 2>&1
54+
#
55+
# - name: Debug stty 2
56+
# run: stty
5457

5558
- name: "Install PHP with extensions"
5659
uses: shivammathur/[email protected]

tests/Command/AddUserCommandTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class AddUserCommandTest extends KernelTestCase
2828

2929
protected function setUp(): void
3030
{
31+
return; // TODO
3132
exec('stty 2>&1', $output, $exitcode);
3233
$isSttySupported = 0 === $exitcode;
3334

0 commit comments

Comments
 (0)