django-mfa3

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

commit
daedffa6edef92028070fad184755c6a7f733197
parent
82c82609ba6425c937eb06ec10e55eb5fdba6e1e
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-03-06 19:35
mv coverage config to pyproject.toml

Diffstat

M .github/workflows/main.yml 2 +-
M pyproject.toml 3 +++
M setup.cfg 3 ---

3 files changed, 4 insertions, 4 deletions


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

@@ -26,7 +26,7 @@ jobs:
   26    26     - uses: actions/setup-python@v2
   27    27       with:
   28    28         python-version: ${{ matrix.python }}
   29    -1     - run: pip install . coverage "django==${{ matrix.django }}"
   -1    29     - run: pip install . coverage tomli "django==${{ matrix.django }}"
   30    30     - name: tests
   31    31       run: |
   32    32         coverage run -m tests.manage test

diff --git a/pyproject.toml b/pyproject.toml

@@ -1,3 +1,6 @@
    1     1 [build-system]
    2     2 requires = ["setuptools", "wheel"]
    3     3 build-backend = "setuptools.build_meta"
   -1     4 
   -1     5 [tool.coverage.run]
   -1     6 source = ["mfa"]

diff --git a/setup.cfg b/setup.cfg

@@ -8,6 +8,3 @@ max-complexity = 8
    8     8 [isort]
    9     9 force_single_line = True
   10    10 skip = migrations
   11    -1 
   12    -1 [coverage:run]
   13    -1 source = mfa