Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2021-06-13 18:40:11 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2021-06-14 17:28:31 +0300
commitd544080187c382ffe4348c9741ab9066a84b5ced (patch)
treef9fe7cc52aedbc88e751d9dff9465a33cae5e9a3 /.github/workflows
parentce2f6edec60ecd392d82490f57f85afd1fce5665 (diff)
Run PHPUnit test in random order by default
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml40
1 files changed, 0 insertions, 40 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index f2a3a44bb8..65500688c8 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -181,46 +181,6 @@ jobs:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: build/logs/clover.xml
- test-php-random:
- name: Test (random) on php ${{ matrix.php-version }} and ${{ matrix.os }}
- runs-on: ${{ matrix.os }}
- if: "!contains(github.event.head_commit.message, '[ci skip]')"
- strategy:
- matrix:
- php-version: ["7.4"]
- os: [ubuntu-latest]
- steps:
- - uses: actions/checkout@v2
- - name: Install gettext
- run: sudo apt-get install -y gettext
- - name: Generate mo files
- run: ./scripts/generate-mo --quiet
- - name: Use php ${{ matrix.php-version }}
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, iconv, mysqli, zip, gd, bz2
-
- - name: Get Composer cache directory
- id: composer-cache
- run: |
- echo "::set-output name=dir::$(composer config cache-files-dir)"
-
- - name: Cache dependencies
- uses: actions/cache@v2
- with:
- path: ${{ steps.composer-cache.outputs.dir }}
- key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}
- restore-keys: |
- composer-${{ runner.os }}-${{ matrix.php-version }}-
-
- - name: Install dependencies
- run: composer install
- - name: Run random php tests
- # This one is allowed to fail, but we hope it will not
- continue-on-error: true
- run: composer run phpunit -- --exclude-group selenium --order-by=random --stop-on-failure
-
test-js:
name: Test javascript files
runs-on: ubuntu-latest