Fix integration_tests_without_db.yaml #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run integration tests with DB | |
on: [ push ] | |
jobs: | |
build_and_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ 3.8 ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python & Poetry Environment | |
uses: ./.github/actions/prepare_poetry_env | |
- name: Install Lua environment | |
run: poetry nox -s install_lua_environment | |
- name: Poetry install | |
run: poetry nox -s run_in_dev_env poetry install | |
- name: Build language container | |
run: poetry nox -s .build_language_container | |
- name: Start test environment | |
run: poetry nox -s start_integration_test_environment | |
- name: Run Python integration tests with db | |
run: poetry nox -s run_python_integration_tests_with_db |