Skip to content

Commit

Permalink
Remove setup.cfg, and remove last references to flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
blag committed Oct 16, 2023
1 parent dab2bdf commit 11a6917
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 23 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
TARGET?=tests

.PHONY: flake8 example test coverage
.PHONY: ruff example test coverage

flake8:
flake8 user_sessions example tests
ruff:
ruff user_sessions example tests

example:
DJANGO_SETTINGS_MODULE=example.settings PYTHONPATH=. \
Expand Down
13 changes: 0 additions & 13 deletions setup.cfg

This file was deleted.

8 changes: 1 addition & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ envlist =
py{38,39,310}-dj{32,40,41}
py{311}-dj41
py{311,312}-dj{42,main}
flake8

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311, flake8
3.11: py311
3.12: py312

[gh-actions:env]
Expand Down Expand Up @@ -43,8 +42,3 @@ deps =
ignore_outcome =
djmain: True
allowlist_externals = make

[testenv:flake8]
basepython = python3.11
deps = flake8
commands = flake8

0 comments on commit 11a6917

Please sign in to comment.