Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ data-ingestion:
- any-glob-to-any-file:
- "rag_evaluation/data_ingestion/**"

# DocGPT subproject
docgpt:
# OpenRAG subproject
openrag:
- changed-files:
- any-glob-to-any-file:
- "systems/docgpt/**"
- "systems/openrag/**"

# Tests
tests:
- changed-files:
- any-glob-to-any-file:
- "tests/**"
- "systems/docgpt/tests/**"
- "systems/openrag/tests/**"

# Documentation
documentation:
Expand All @@ -52,8 +52,8 @@ dependencies:
- "pyproject.toml"
- "setup.py"
- "setup.cfg"
- "systems/docgpt/pyproject.toml"
- "systems/docgpt/uv.lock"
- "systems/openrag/pyproject.toml"
- "systems/openrag/uv.lock"

# Configuration
config:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ jobs:
name: coverage-report
path: coverage.xml

test-docgpt:
name: Test DocGPT
test-openrag:
name: Test OpenRAG
runs-on: ubuntu-latest
defaults:
run:
working-directory: systems/docgpt
working-directory: systems/openrag
steps:
- uses: actions/checkout@v4

Expand All @@ -104,5 +104,5 @@ jobs:
- name: Install dependencies
run: uv sync --dev

- name: Run DocGPT tests
- name: Run OpenRAG tests
run: uv run pytest tests/ -v --tb=short || echo "No tests found yet"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ env/
.DS_Store
Thumbs.db

# Secrets / keys
*.pem

# Jupyter
.ipynb_checkpoints/

Expand Down
Loading