File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 58
58
}
59
59
run : pytest -v
60
60
- name : Check style
61
- run : flake8 django_cte/ tests/
61
+ run : ruff check
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ source .venv/bin/activate
24
24
pip install -e .[test]
25
25
26
26
pytest
27
- flake8 --config=setup.cfg
27
+ ruff check
28
28
29
29
# To run tests against postgres
30
30
psql -U username -h localhost -p 5432 -c 'create database django_cte;'
Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ dependencies = ["django"]
32
32
33
33
[project .optional-dependencies ]
34
34
test = [
35
- " flake8" ,
36
35
" psycopg2-binary" ,
37
36
" pytest-unmagic" ,
37
+ " ruff" ,
38
38
]
39
39
40
40
[project .urls ]
@@ -49,6 +49,3 @@ name = "django_cte"
49
49
50
50
[tool .distutils .bdist_wheel ]
51
51
universal = true
52
-
53
- [tool .flake8 ]
54
- exclude = " ./build"
You can’t perform that action at this time.
0 commit comments