Run integration tests in pipeline

This commit is contained in:
Leon Luithlen 2024-11-12 14:22:12 +01:00
parent e6bdb6703a
commit 6f4ba20003
4 changed files with 13 additions and 4 deletions

View file

@ -50,9 +50,12 @@ jobs:
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
- name: Run unit tests
run: poetry run pytest cognee/tests/unit/
- name: Run integration tests
run: poetry run pytest cognee/tests/integration/
- name: Run default basic pipeline
env:
ENV: 'dev'

View file

@ -50,9 +50,12 @@ jobs:
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
- name: Run unit tests
run: poetry run pytest cognee/tests/unit/
- name: Run integration tests
run: poetry run pytest cognee/tests/integration/
- name: Run default basic pipeline
env:
ENV: 'dev'

View file

@ -50,9 +50,12 @@ jobs:
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
- name: Run unit tests
run: poetry run pytest cognee/tests/unit/
- name: Run integration tests
run: poetry run pytest cognee/tests/integration/
- name: Run default basic pipeline
env:
ENV: 'dev'

View file

@ -1,2 +1,2 @@
[pytest]
addopts = cognee/tests/unit
addopts = cognee/tests