Skip to content

Add missing local_cache argument. #1693

Add missing local_cache argument.

Add missing local_cache argument. #1693

Workflow file for this run

name: Testing unify
on: push
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install deps
uses: knowsuchagency/poetry-install@v1
env:
POETRY_VIRTUALENVS_CREATE: false
- name: Run black check
run: poetry run black --check .
pytest:
runs-on: ubuntu-latest
environment: unify-testing
timeout-minutes: 120
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with dev
- name: Run unit tests
run: poetry run pytest --timeout=120 -p no:warnings -vv .
env:
UNIFY_KEY: ${{ secrets.USER_API_KEY }}