Skip to content

Commit

Permalink
Try to allow failing test to move forward
Browse files Browse the repository at this point in the history
  • Loading branch information
grigorescu committed Nov 26, 2024
1 parent 2ab3376 commit c560d90
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/behave_next_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ jobs:
PYTHON_IMAGE_VER: "${{ matrix.python-version }}"

- name: Migrate Database
run: make migrate
run: |
make migrate || echo "::warning:: migrate failed on future Python version ${{ matrix.python-version }}."
- name: Run Application
run: make run
run: |
make run || echo "::warning:: run failed on future Python version ${{ matrix.python-version }}."
- name: Check Docker state (pre-test)
run: docker ps
Expand All @@ -56,7 +58,7 @@ jobs:
POSTGRES_USER: scram
POSTGRES_DB: test_scram
run: |
make coverage.xml || echo "::warning:: Failed on future Python version ${{ matrix.python-version }}."
make coverage.xml || echo "::warning:: pytest + behave failed on future Python version ${{ matrix.python-version }}."
- name: Dump docker logs on failure
if: failure()
Expand Down

0 comments on commit c560d90

Please sign in to comment.