Commit Graph

60 Commits

Author SHA1 Message Date
9bbc225942 fix(ci): run tests from project root with correct PYTHONPATH
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Successful in 1m56s
CI/CD Pipeline / Run Tests (push) Failing after 2m28s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
2026-02-02 12:58:32 +01:00
0122834c8f fix(ci): lint only src/ to match pre-commit config
Some checks failed
CI/CD Pipeline / Build Docker Images (push) Has been cancelled
CI/CD Pipeline / Push to Gitea Registry (push) Has been cancelled
CI/CD Pipeline / Run Tests (push) Has been cancelled
CI/CD Pipeline / Code Quality Checks (push) Has been cancelled
2026-02-02 12:57:38 +01:00
bb34c194f8 fix(ci): install Python 3.11 from deadsnakes PPA
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 1m55s
CI/CD Pipeline / Run Tests (push) Successful in 1m56s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
2026-02-02 12:54:12 +01:00
5da87c40f7 fix(ci): use system python3 instead of python3.11 (Ubuntu 24.04 has 3.12)
Some checks failed
CI/CD Pipeline / Build Docker Images (push) Has been cancelled
CI/CD Pipeline / Push to Gitea Registry (push) Has been cancelled
CI/CD Pipeline / Code Quality Checks (push) Has been cancelled
CI/CD Pipeline / Run Tests (push) Has been cancelled
2026-02-02 12:53:36 +01:00
3fab27b166 fix(ci): preserve http protocol in git clone URL
Some checks failed
CI/CD Pipeline / Run Tests (push) Failing after 11s
CI/CD Pipeline / Code Quality Checks (push) Failing after 18s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
2026-02-02 12:52:39 +01:00
2848bb2f5c fix(ci): use gitea.token instead of secrets for authentication
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 1s
CI/CD Pipeline / Run Tests (push) Failing after 0s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
2026-02-02 12:51:43 +01:00
72839995ce fix(ci): add GITEA_TOKEN for git clone authentication
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 1s
CI/CD Pipeline / Run Tests (push) Failing after 0s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
2026-02-02 12:50:17 +01:00
f68b4fbbf1 fix(ci): add dev branch to CI workflow triggers
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 0s
CI/CD Pipeline / Run Tests (push) Failing after 1s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
2026-02-02 12:49:06 +01:00
97a7764155 fix(ci): replace GitHub Actions with native bash commands
- Remove dependency on GitHub (network blocks access)
- Replace actions/checkout@v4 with git clone
- Replace actions/setup-python@v4 with apt-get install
- Replace docker/build-push-action with native docker commands
- Use config.settings.test (SQLite in-memory) for tests

Closes: network connectivity issue in CI
2026-02-02 12:39:06 +01:00
06b30fca02 feat: implement CI/CD pipeline with Gitea Actions
- Add Gitea Actions workflow with 4 stages: lint, test, build, push
- Configure ruff linting and formatting checks
- Set up Django tests with PostgreSQL and Redis services
- Implement Docker image building for web and celery services
- Add requirements.txt and requirements-dev.txt generation
- Fix ipdb compatibility issues in test runner
- Update ruff configuration for Django compatibility
- Add comprehensive CI/CD documentation
2026-01-19 14:24:48 +01:00