Skip to content

Commit 20ceaf7

Browse files
committed
simplify
1 parent d017475 commit 20ceaf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Install system dependencies
6363
run: sudo apt-get update && sudo apt-get install -y libkrb5-dev # for kerberos
6464
- name: Install
65-
run: make install
65+
run: make install-dependencies
6666
- name: Run linters
6767
run: make lint
6868
- name: Run unit tests with coverage

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ test: ## Run all unit tests (excluding integration)
9898

9999
test-integration: test-integration-setup test-integration-exec test-integration-cleanup ## Run integration tests
100100

101-
test-integration-setup: ## Start Docker services for integration tests
101+
test-integration-setup: install ## Start Docker services for integration tests
102102
docker compose -f dev/docker-compose-integration.yml kill
103103
docker compose -f dev/docker-compose-integration.yml rm -f
104104
docker compose -f dev/docker-compose-integration.yml up -d --build --wait

0 commit comments

Comments
 (0)