Skip to content

feat: Initial version of temporal invalidation + tests #2

feat: Initial version of temporal invalidation + tests

feat: Initial version of temporal invalidation + tests #2

Workflow file for this run

name: Non-Integration Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run non-integration tests
env:
PYTHONPATH: ${{ github.workspace }}
run: |
poetry run pytest tests -v -k "not _int and not integration"