Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit 586a4d1

Browse files
author
nirgn975
committed
Fix codacy errors
1 parent 1ec8421 commit 586a4d1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# An Angular - Django Project Seed
22

3-
[![license][license-image]][license-url] [![Build Status][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![Dependency Status][dependencyci-image]][dependencyci-url] [![buy me a cup of coffee!][donate-image]][donate-url]
3+
[![license][license-image]][license-url] [![GitHub release][github-image]][github-url] [![Build Status][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![Dependency Status][dependencyci-image]][dependencyci-url] [![Donate][donate-image]][donate-url]
44

55
This repo is a production ready seed project. The app shows a list of users.
66

@@ -124,6 +124,8 @@ Just fork and do a pull request (;
124124

125125
[license-image]: https://img.shields.io/badge/license-ISC-blue.svg
126126
[license-url]: https://github.com/nirgn975/Angular-Django-cluster/blob/master/LICENSE
127+
[github-image]: https://img.shields.io/github/release/qubyte/rubidium.svg
128+
[github-url]: https://github.com/nirgn975/Angular-Django-Project-Seed
127129
[travis-image]: https://travis-ci.org/nirgn975/Angular-Django-cluster.svg?branch=master
128130
[travis-url]: https://travis-ci.org/nirgn975/Angular-Django-cluster
129131
[codecov-image]: https://codecov.io/gh/nirgn975/Angular-Django-cluster/branch/master/graph/badge.svg

server/api/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from rest_framework import status
22
from rest_framework.test import APITestCase
33
from django.contrib.auth.models import User
4-
from requests.auth import HTTPBasicAuth
54

65

76
class UsersApiTestCase(APITestCase):
7+
@classmethod
88
def setUp(self):
99
User.objects.create_superuser('admin', '[email protected]', 'admin12345')
1010

0 commit comments

Comments
 (0)