Skip to content

Commit 35421dd

Browse files
committed
Use Python dependency installation task in integration test task
A dedicated task has been added for installing the project's Python dependencies, and this should be used throughout the taskfile in place of redundant direct commands.
1 parent 745aa44 commit 35421dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Taskfile.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ tasks:
7373

7474
go:test-integration:
7575
desc: Run integration tests
76+
deps:
77+
- task: poetry:install-deps
7678
cmds:
7779
- task: build
78-
- poetry install --no-root
7980
- poetry run pytest test
8081

8182
check:

0 commit comments

Comments
 (0)