changes get_statuses to use select #151
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 Tests | |
on: push | |
jobs: | |
test-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create .env file | |
run: cat env.* > .env | |
- name: Load .env file | |
uses: xom9ikk/dotenv@v2.3.0 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'poetry' | |
- run: poetry install | |
- name: setup pytest.ini | |
run: mv .github/pytest.ini pytest.ini | |
- name: Linting | |
run: poetry run ruff check | |
- name: Run tests | |
env: | |
CI: "true" | |
run: poetry run pytest | |
test-bash: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bats and bats libs | |
id: setup-bats | |
uses: bats-core/bats-action@3.0.0 | |
- name: Setup Shell Mock | |
run: wget -P /opt/ https://github.com/boschresearch/shellmock/releases/download/0.9.1/shellmock.bash | |
- run: ls /opt | |
- name: Run tests | |
shell: bash | |
env: | |
BATS_LIB_PATH: ${{ steps.setup-bats.outputs.lib-path }} | |
SHELLMOCK_PATH: /opt/shellmock.bash | |
TERM: xterm | |
run: bats ./bin/**/*_test.sh |