当功能测试失败时,如何停止Github Actions步骤(使用Codeception)。

问题描述 投票:0回答:1

我是Github Actions的新手,我试图用功能测试做一些持续集成。

我使用了Codeception,我的工作流程运行得很完美,但是当一些测试失败时,步骤被写成成功。Github并没有停止动作,而是继续运行下一步。

这是我的工作流程的yml文件。

name: Run codeception tests

on:
  push:
    branches: [ feature/functional-tests/codeception ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:

    # —— Setup Github Actions 🐙 —————————————————————————————————————————————
    - name: Checkout
      uses: actions/checkout@v2

    # —— Setup PHP Version 7.3 🐘 —————————————————————————————————————————————
    - name: Setup PHP environment
      uses: shivammathur/setup-php@master
      with:
        php-version: '7.3'

    # —— Setup Docker Environment 🐋 ————————————————————————————————————————————— 
    - name: Build containers
      run: docker-compose build

    - name: Start all container
      run: docker-compose up -d

    - name: Execute www container
      run: docker exec -t my_container developer

    - name: Create parameter file
      run: cp app/config/parameters.yml.dist app/config/parameters.yml

    # —— Composer 🧙‍️ —————————————————————————————————————————————————————————
    - name: Install dependancies
      run: composer install

    # —— Check Requirements 👌 —————————————————————————————————————————————
    - name: Check PHP version
      run: php --version

    # —— Setup Database 💾 —————————————————————————————————————————————
    - name: Create database
      run: docker exec -t mysql_container mysql -P 3306 --protocol=tcp -u root --password=**** -e "CREATE DATABASE functional_tests"

    - name: Copy database
      run: cat tests/_data/test.sql | docker exec -i mysql_container mysql -u root --password=**** functional_tests

    - name: Switch database
      run: docker exec -t php /var/www/bin/console app:dev:marketplace:switch functional_tests

    - name: Execute migrations
      run: docker exec -t php /var/www/bin/console --no-interaction doctrine:migrations:migrate

    - name: Populate database
      run: docker exec -t my_container php /var/www/bin/console fos:elastica:populate

    # —— Generate Assets 🔥 ———————————————————————————————————————————————————————————
    - name: Install assets
      run: |
        docker exec -t my_container php /var/www/bin/console assets:install
        docker exec -t my_container php /var/www/bin/console assetic:dump

    # —— Tests ✅ ———————————————————————————————————————————————————————————
    - name: Run functional tests
      run: docker exec -t my_container php codeception:functional

    - name: Run Unit Tests
      run: php vendor/phpunit/phpunit/phpunit -c app/

这里是操作步骤的日志。

Github动作日志

有谁知道为什么步骤不成功,如何抛出一个错误?

php github functional-testing codeception github-actions
1个回答
0
投票

可能是 codeception:functional 即使发生了错误,也设置退出代码=0。docker exec 将进程的退出代码传递过去。如果命令返回时的退出代码 != 0,GitHub Actions 会使该步骤失败。

© www.soinside.com 2019 - 2024. All rights reserved.