Skip to content
Merged
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
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
.Python
*.so
**/htmlcov/
**/mypy_cache/
**/*.ruff_cache/

# Virtual environments
Expand Down
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,6 @@ venv.bak/
# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

Expand Down
12 changes: 0 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,3 @@ repos:
# entry: node scripts/check-hardcoded-styles.js
# files: ^apps/(frontend|documentation)/
# pass_filenames: false


# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v1.8.0
# hooks:
# - id: mypy
# additional_dependencies: [
# "types-requests",
# "pandas-stubs",
# "pyarrow-stubs",
# "types-tqdm"
# ]
9 changes: 4 additions & 5 deletions agents/research-assistant/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions agents/travel-agent/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion agents/visit-prep/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion apps/backend/.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
**/*$py.class
**/.pytest_cache/
**/.coverage
**/.mypy_cache/
**/.ruff_cache/

# Version control
Expand Down
8 changes: 2 additions & 6 deletions apps/backend/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all format lint lint_diff format_diff type-check test test-lf docs
.PHONY: all format lint lint_diff format_diff test test-lf docs

all: format_diff lint_diff type-check test docs
all: format_diff lint_diff test docs


ALL_FILES := .
Expand Down Expand Up @@ -32,10 +32,6 @@ format_diff:
echo "No Python file changes detected in git diff with the main branch."; \
fi

type-check:
PYTHONPATH=src mypy --install-types --non-interactive
PYTHONPATH=src mypy --package rhesis.backend

# Tests (Postgres/Redis start automatically via Testcontainers)
test:
uv run --extra cpu pytest ../../tests/backend --ignore=../../tests/backend/integration -n 4 --timeout=120 --timeout-method=thread --reruns=1
Expand Down
1 change: 0 additions & 1 deletion apps/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ dev = [
"pytest-cov>=6.0.0",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.12.0",
"mypy>=1.15.0",
"coverage>=7.6.0",
"pre-commit>=4.0.0",
"bandit>=1.8.0",
Expand Down
Loading
Loading