Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bfa55e7

Browse files
committedApr 9, 2025·
chore: fix ci
1 parent 914c7b3 commit bfa55e7

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed
 

‎.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
poetry install
2727
- name: Lint with flake8
2828
run: |
29-
poetry run flake8 src
29+
poetry run flake8 src --ignore E501
3030
- name: Run unit tests
3131
run: |
32-
poetry run pytest --doctest-modules --ignore=examples --cov=sidan_gin --cov-config=.coveragerc --cov-report=xml
32+
poetry run pytest --doctest-modules --ignore=examples --cov=deltadefi --cov-config=.coveragerc --cov-report=xml
3333
- name: poetry-check
3434
run: |
3535
poetry check

‎Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
cov: ## check code coverage
3-
poetry run pytest -n 4 --cov sidan_gin
3+
poetry run pytest -n 4 --cov deltadefi
44

55
cov-html: cov ## check code coverage and generate an html report
66
poetry run coverage html -d cov_html
@@ -24,6 +24,7 @@ format: ## runs code style and formatter
2424
poetry run isort .
2525
poetry run black .
2626

27+
2728
deps:
2829
poetry lock
29-
poetry install
30+
poetry install

‎src/deltadefi/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# flake8: noqa
12
from .clients import ApiClient

‎src/deltadefi/constants/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# flake8: noqa
12
from .constants import *

0 commit comments

Comments
 (0)
Please sign in to comment.