File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 24
24
- name : Start external services
25
25
run : docker compose up -d
26
26
- name : Install dependencies
27
- run : |
28
- pip install git+https://github.com/asphalt-framework/asphalt.git
29
- pip install -e .[test]
27
+ run : pip install -e .[test]
30
28
- name : Test with pytest
31
29
run : coverage run -m pytest -v
32
30
- name : Generate coverage report
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ classifiers = [
25
25
]
26
26
requires-python = " >=3.9"
27
27
dependencies = [
28
- " asphalt ~= 4.8 " ,
28
+ " asphalt @ git+https://github.com/asphalt-framework/asphalt " ,
29
29
" aiokafka >= 0.10" ,
30
30
]
31
31
dynamic = [" version" ]
@@ -64,7 +64,7 @@ extend-select = [
64
64
" I" , # isort
65
65
" ISC" , # flake8-implicit-str-concat
66
66
" PGH" , # pygrep-hooks
67
- " RUF100 " , # unused noqa (yesqa)
67
+ " RUF " , # unused noqa (yesqa)
68
68
" UP" , # pyupgrade
69
69
" W" , # pycodestyle warnings
70
70
]
You can’t perform that action at this time.
0 commit comments