diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f1f5f7b..a53a50c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Linter & Tests +name: Tests on: push: diff --git a/durin/migrations/0003_alter_client_token_ttl.py b/durin/migrations/0003_alter_client_token_ttl.py index 844850c..9b2f86d 100644 --- a/durin/migrations/0003_alter_client_token_ttl.py +++ b/durin/migrations/0003_alter_client_token_ttl.py @@ -1,11 +1,11 @@ # Generated by Django 4.1.3 on 2022-11-25 18:39 from django.db import migrations, models + import durin.models class Migration(migrations.Migration): - dependencies = [ ("durin", "0002_client_throttlerate"), ] diff --git a/tox.ini b/tox.ini index 49f800e..291acd1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,33 +1,11 @@ [tox] envlist = - flake8, - black, - isort, py{35,36,37,38,39}-django22, py{36,37,38,39,310}-django30 py{36,37,38,39,310}-django31 py{36,37,38,39,310}-django32 py{38,39,310}-django40 -[testenv:flake8] -deps = flake8 -changedir = {toxinidir} -commands = flake8 . --count - -[testenv:black] -deps = black -changedir = {toxinidir} -commands = black . --check - -[testenv:isort] -deps = isort -changedir = {toxinidir} -commands = isort --check-only --diff \ - setup.py \ - durin \ - example_project \ - tests - [testenv] commands = python manage.py migrate @@ -56,4 +34,4 @@ python = 3.7: py37 3.8: py38 3.9: py39 - 3.10: py310, flake8, black, isort + 3.10: py310