django-mfa3

multi factor authentication for django
git clone https://git.ce9e.org/django-mfa3.git

commit
5ff3a84ba0a9e65451aac93d54aa156ccdb8d1f3
parent
5668c417df3c826954f8a7f8759ec2505cdd1bd1
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2024-07-31 17:30
rm manage.py

Diffstat

M .github/workflows/main.yml 2 +-
D tests/manage.py 7 -------

2 files changed, 1 insertions, 8 deletions


diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml

@@ -28,7 +28,7 @@ jobs:
   28    28     - run: pip install . coverage tomli "django==${{ matrix.django }}"
   29    29     - name: tests
   30    30       run: |
   31    -1         coverage run -m tests.manage test
   -1    31         coverage run -m django test --settings tests.settings
   32    32         coverage report
   33    33   publish:
   34    34     needs: [lint, test]

diff --git a/tests/manage.py b/tests/manage.py

@@ -1,7 +0,0 @@
    1    -1 import os
    2    -1 import sys
    3    -1 
    4    -1 from django.core.management import execute_from_command_line
    5    -1 
    6    -1 os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tests.settings')
    7    -1 execute_from_command_line(sys.argv)