Skip to content

Commit fb93b4f

Browse files
committed
docs: small comment for testing
1 parent 4e84b4f commit fb93b4f

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A full-stack task management web application built with Django, containerized wi
77
* **Password**: admin
88

99
**Docker Image:** https://hub.docker.com/repository/docker/00015775/taskmanager/ (_under 200MB_)
10-
10+
<!-- small comment here for testing -->
1111
## Features
1212

1313
- User authentication (register, login, logout, profile management)
@@ -232,14 +232,14 @@ coverage report
232232
docker compose exec web pytest
233233
```
234234

235-
25 tests covering models, views, authentication, CRUD operations, and data isolation between users.
235+
9 tests covering user registration and login, profile access control, task creation, listing, editing and deletion, task model creation, and tag creation functionality.
236236

237237
## CI/CD Pipeline
238238

239239
Every push to `main` branch automatically:
240240

241-
1. Runs flake8 code quality checks
242-
2. Runs 25 pytest tests
241+
1. Runs `flake8` code quality checks
242+
2. Runs 9 pytest tests
243243
3. Generates coverage report (minimum 60%)
244244
4. Builds Docker image (multi-stage, non-root user)
245245
5. Tags image with `latest` and commit SHA
@@ -296,12 +296,11 @@ flake8 . --max-line-length=120 \
296296
--exclude=venv,migrations,staticfiles,__pycache__ \
297297
--count --statistics
298298
```
299-
If you see whitespace/blank errors, the run:
299+
If you see whitespace/blank errors, then run:
300300
```
301301
# Auto-fix all whitespace issues across the whole project
302302
autopep8 --in-place --recursive \
303303
--select=W291,W292,W293,W391 \
304304
--exclude=venv,migrations,staticfiles \
305305
.
306306
```
307-

0 commit comments

Comments
 (0)