Skip to content

Commit 7689512

Browse files
committed
remove code duplication
1 parent 691e5e1 commit 7689512

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Taskfile.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ tasks:
9393
desc: Run integration tests
9494
cmds:
9595
- task: build
96-
- poetry install --no-root
96+
- task: poetry:install-deps
9797
- poetry run pytest test
9898

9999
check:
@@ -123,13 +123,13 @@ tasks:
123123
python:lint:
124124
desc: Lint Python code
125125
cmds:
126-
- poetry install --no-root
126+
- task: poetry:install-deps
127127
- poetry run flake8
128128

129129
python:format:
130130
desc: Automatically formats Python files
131131
cmds:
132-
- poetry install --no-root
132+
- task: poetry:install-deps
133133
- poetry run black .
134134

135135
vars:

0 commit comments

Comments
 (0)