Skip to content

Commit

Permalink
EVA-160 - revert debug coding from workflow and open up all end2end t…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
jesseeproductions committed Sep 30, 2024
1 parent 9f41f40 commit a61d191
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 37 deletions.
30 changes: 2 additions & 28 deletions .github/workflows/tests-php-eva.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
suite: [ end2end ]
suite: [ eva_integration, end2end ]
runs-on: ubuntu-latest
steps:
# ------------------------------------------------------------------------------
Expand Down Expand Up @@ -359,7 +359,7 @@ jobs:
${SLIC_BIN} wp core version
- name: Run suite tests
if: steps.skip.outputs.value != 1
run: ${SLIC_BIN} run ${{ matrix.suite }} --debug
run: ${SLIC_BIN} run ${{ matrix.suite }}
# ------------------------------------------------------------------------------
# Copy test outputs into workspace (On failure)
# ------------------------------------------------------------------------------
Expand Down Expand Up @@ -388,29 +388,3 @@ jobs:
name: output ${{ matrix.suite }}
path: tests/_output/
retention-days: 7
# ------------------------------------------------------------------------------
# Display current working directory and contents (On failure)
# ------------------------------------------------------------------------------
- name: Display current working directory and contents
if: ${{ steps.skip.outputs.value != 1 && failure() }}
run: |
echo "Current working directory: $(pwd)"
echo "Contents of the current directory:"
ls -la
echo "Listing 'tests/_output/' directories recursively:"
find . -type d -name '_output' -path '*/tests/_output'
echo "Contents of found '_output' directories:"
find . -type d -name '_output' -path '*/tests/_output' -exec ls -la {} \;
cd ../
echo "Current working directory1: $(pwd)"
echo "Contents of the current directory1:"
ls -la
echo "Listing 'tests/_output/' directories recursively:"
find . -type d -name '_output' -path '*/tests/_output'
echo "Contents of found '_output' directories:"
find . -type d -name '_output' -path '*/tests/_output' -exec ls -la {} \;
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public function should_activate_plugin( End2endTester $I ) {

/**
* @test
* @skip
*/
public function should_not_see_settings_when_et_plus_deactivated( End2endTester $I ) {
$I->amOnPluginsPage();
Expand All @@ -49,7 +48,6 @@ public function should_not_see_settings_when_et_plus_deactivated( End2endTester

/**
* @test
* @skip
*/
public function should_not_see_settings_when_et_deactivated_and_et_activated( End2endTester $I ) {
$I->amOnPluginsPage();
Expand All @@ -63,7 +61,6 @@ public function should_not_see_settings_when_et_deactivated_and_et_activated( En

/**
* @test
* @skip
*/
public function should_see_only_et_plus_settings_when_pro_active( End2endTester $I ) {
$I->amOnPluginsPage();
Expand All @@ -77,7 +74,6 @@ public function should_see_only_et_plus_settings_when_pro_active( End2endTester

/**
* @test
* @skip
*/
public function should_see_all_settings_when_et_plus_and_pro_active( End2endTester $I ) {
$I->amOnPluginsPage();
Expand Down
5 changes: 0 additions & 5 deletions tests/end2end/Events_Automator/Zapier/Pro/SettingsCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public function _before( End2endTester $I ) {

/**
* @test
* @skip
*/
public function should_activate_plugin( End2endTester $I ) {
$I->amOnPluginsPage();
Expand All @@ -35,7 +34,6 @@ public function should_activate_plugin( End2endTester $I ) {

/**
* @test
* @skip
*/
public function should_not_see_settings_when_pro_deactivated( End2endTester $I ) {
$I->amOnPluginsPage();
Expand All @@ -48,7 +46,6 @@ public function should_not_see_settings_when_pro_deactivated( End2endTester $I )

/**
* @test
* @skip
*/
public function should_not_see_settings_when_tec_deactivated_and_et_activated( End2endTester $I ) {
$I->amOnPluginsPage();
Expand All @@ -62,7 +59,6 @@ public function should_not_see_settings_when_tec_deactivated_and_et_activated( E

/**
* @test
* @skip
*/
public function should_see_only_pro_settings_when_et_plus( End2endTester $I ) {
$I->amOnPluginsPage();
Expand All @@ -76,7 +72,6 @@ public function should_see_only_pro_settings_when_et_plus( End2endTester $I ) {

/**
* @test
* @skip
*/
public function should_see_all_settings_when_et_plus_and_pro_active( End2endTester $I ) {
$I->amOnPluginsPage();
Expand Down

0 comments on commit a61d191

Please sign in to comment.