Skip to content

Remove consume_remaining_messages from background_listener_thread.py #284

Remove consume_remaining_messages from background_listener_thread.py

Remove consume_remaining_messages from background_listener_thread.py #284

Workflow file for this run

name: Build and test project
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: ./scripts/install_lua_environment.sh
- name: Poetry install
run: ./scripts/run_in_dev_env.sh poetry install
- name: Run Lua unit tests and static code analyzer
run: ./scripts/run_in_dev_env.sh ./scripts/lua_tests.sh
- name: Build language container
run: ./build_language_container.sh
- name: Start test environment
run: bash ./scripts/start_integration_test_environment.sh
- name: Run Python tests
run: ./scripts/run_in_dev_env.sh poetry run pytest tests