• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Brunowar12 / TaskManagerSystem / 15567645473

10 Jun 2025 06:42PM UTC coverage: 92.548% (+0.07%) from 92.479%
15567645473

push

github

web-flow
fix: minor style corrections and enhancements (#31)

* fix: corrections to style and minor errors in the code

- unused imports (commented where necessary)
+ fix docstrings
+ fix assert checks in create test user method
+ 2 blank lines before classes and funcs

* fix: small style patch

* fix: style fixes

* fix: style patch

* feat: serializers return user/owner name and some style patch

+ category and project serializer now return user/owner username

57 of 76 new or added lines in 20 files covered. (75.0%)

1 existing line in 1 file now uncovered.

1627 of 1758 relevant lines covered (92.55%)

5.55 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

88.89
/api/views.py
1
from django.conf import settings
6✔
2
from datetime import datetime
6✔
3
from rest_framework.decorators import api_view, permission_classes
6✔
4
from rest_framework.permissions import AllowAny
6✔
5
from rest_framework.response import Response
6✔
6

7

8
@api_view(["GET"])
6✔
9
@permission_classes([AllowAny])
6✔
10
def api_status(request):
6✔
NEW
11
    return Response(
×
12
        {
13
            "status": "ok",
14
            "version": getattr(settings, "API_VERSION", "dev"),
15
            "date": datetime.now(),
16
            "message": "TaskManager API is up and running",
17
        }
18
    )
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc