Skip to content

Improve timer commands and checking types #149

Improve timer commands and checking types

Improve timer commands and checking types #149

Workflow file for this run

name: Testing iwf-python-sdk
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install Dependencies
run: poetry install --no-interaction --no-root
- name: Run linters
uses: pre-commit/action@v3.0.0
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Set up iWF environment"
run: docker compose -f iwf/tests/iwf-service-env/docker-compose.yml up -d
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install Dependencies
run: poetry install --no-interaction --no-root
- name: Run pytest check # sleep 30s to wait for the server to be ready
run: echo "[run]">>.coveragerc && echo "omit = iwf/iwf_api/">>.coveragerc && sleep 30 && poetry run pytest -vv --cov-config=.coveragerc --cov="iwf/" .
- name: Dump docker logs
if: always()
uses: jwalton/gh-docker-logs@v2