Skip to content

Commit

Permalink
ENG-1293: introduced debug logging in CI to troubleshoot test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
AsadHasan-Rasa committed Sep 12, 2024
1 parent 5512be9 commit ec61bb1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Install Dependencies 📦
run: |
make install
make install && rasa --version
- name: Train model
env:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
- name: Install Dependencies 📦
run: |
make install
make install && rasa --version
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
with:
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
RASA_DUCKLING_HTTP_URL: ${{secrets.DUCKLING_URL}}
RASA_PRO_BETA_INTENTLESS: true
run: |
make test-passing
make test-passing --debug
- name: Run e2e flaky tests
if: always()
Expand All @@ -191,7 +191,7 @@ jobs:
RASA_DUCKLING_HTTP_URL: ${{secrets.DUCKLING_URL}}
RASA_PRO_BETA_INTENTLESS: true
run: |
make test-flaky || true
make test-flaky --debug || true
- name: Run e2e failing tests
if: always()
Expand All @@ -201,7 +201,7 @@ jobs:
RASA_DUCKLING_HTTP_URL: ${{secrets.DUCKLING_URL}}
RASA_PRO_BETA_INTENTLESS: true
run: |
make test-failing | grep '0 passed'
make test-failing --debug | grep '0 passed'
- name: Stop Duckling server
run: |
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
- name: Install Dependencies 📦
run: |
make install
make install && rasa --version
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
with:
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
RASA_DUCKLING_HTTP_URL: ${{secrets.DUCKLING_URL}}
RASA_PRO_BETA_E2E_ASSERTIONS: true
run: |
make test-passing-assertions
make test-passing-assertions --debug
- name: Run e2e flaky tests with assertions
if: always()
Expand All @@ -299,7 +299,7 @@ jobs:
RASA_DUCKLING_HTTP_URL: ${{secrets.DUCKLING_URL}}
RASA_PRO_BETA_E2E_ASSERTIONS: true
run: |
make test-flaky-assertions || true
make test-flaky-assertions --debug || true
- name: Run e2e failing tests with assertions
if: always()
Expand All @@ -309,7 +309,7 @@ jobs:
RASA_DUCKLING_HTTP_URL: ${{secrets.DUCKLING_URL}}
RASA_PRO_BETA_E2E_ASSERTIONS: true
run: |
make test-failing-assertions | grep '0 passed'
make test-failing-assertions --debug | grep '0 passed'
- name: Stop Duckling server
run: |
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
RASA_PRO_BETA_E2E_ASSERTIONS: true
RASA_PRO_BETA_STUB_CUSTOM_ACTION: true
run: |
make test-passing-stub-custom-actions
make test-passing-stub-custom-actions --debug
- name: Stop Duckling server
run: |
Expand Down

0 comments on commit ec61bb1

Please sign in to comment.