Skip to content

Commit

Permalink
Remove debug step and fix run-test step in integration_tests_without_…
Browse files Browse the repository at this point in the history
…db.yaml
  • Loading branch information
tkilias committed Aug 25, 2023
1 parent a263d30 commit 9022233
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions .github/workflows/integration_tests_without_db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,15 @@ jobs:
outputs:
test-path: ${{ steps.generate_integration_tests_without_db.outputs.matrix }}

debug:
needs: prepare_matrix
strategy:
fail-fast: false
matrix:
python-version: [ 3.8 ]
test-path: ${{ fromJSON(needs.prepare_matrix.outputs.test-path) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- run: echo "${{ matrix.test-path.name }}"

run_test:
needs: prepare_matrix
strategy:
fail-fast: false
matrix:
python-version: [ 3.8 ]
test_path: ${{ fromJSON(needs.prepare_matrix.outputs.test_path) }}
test_path: ${{ fromJSON(needs.prepare_matrix.outputs.test-path) }}
runs-on: ubuntu-latest
name: Run ${{ matrix.test_path.name }}
name: Run ${{ matrix.test-path.name }}
steps:
- uses: actions/checkout@v2

Expand All @@ -55,5 +42,5 @@ jobs:
run: poetry run -- nox -s run_in_dev_env -- poetry install

- name: Run Python integration tests without db
run: poetry run -- nox -s run_python_test -- ${{ matrix.test_path.path }}
run: poetry run -- nox -s run_python_test -- ${{ matrix.test-path.path }}

0 comments on commit 9022233

Please sign in to comment.