diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba97b55..dcb288d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,13 +9,13 @@ jobs: matrix: operating-system: [ubuntu-latest] php-versions: -# - '5.4' -# - '5.5' -# - '5.6' -# - '7.0' -# - '7.1' -# - '7.2' -# - '7.3' + - '5.4' + - '5.5' + - '5.6' + - '7.0' + - '7.1' + - '7.2' + - '7.3' - '7.4' include: - php-versions: '5.3' @@ -49,8 +49,3 @@ jobs: run: vendor/bin/simple-phpunit --coverage-clover coverage.xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 -# - name: Run mutation tests -# if: ${{ matrix.php-versions < 8.0 }} -# env: -# STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} -# run: vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=100 --min-msi=100 -s -j4 diff --git a/tests/PluginTest.php b/tests/PluginTest.php index eb80b81..56b9c42 100644 --- a/tests/PluginTest.php +++ b/tests/PluginTest.php @@ -22,5 +22,7 @@ public function testPlugin() $plugin->getCapabilities() ); $this->assertEquals(array($command), $plugin->getCommands()); + $plugin->deactivate($composer, $io); + $plugin->uninstall($composer, $io); } }