diff --git a/.github/workflows/py-tests.yml b/.github/workflows/py-tests.yml index 6ffffcceaa0..80f7b0d0a00 100644 --- a/.github/workflows/py-tests.yml +++ b/.github/workflows/py-tests.yml @@ -51,7 +51,7 @@ jobs: run: | python3 -m venv env source env/bin/activate - make install_test install_dev generate + make install_test install_dev generate install_all - name: Start Server and Ingest Sample Data run: ./docker/run_local_docker.sh diff --git a/Makefile b/Makefile index 1fb10a0d904..0e733a288cd 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,11 @@ install_test: ## Install the ingestion module with test dependencies install_dev: ## Install the ingestion module with dev dependencies python -m pip install "ingestion[dev]/" +.PHONY: install_all +install_all: ## Install the ingestion module with all dependencies + python -m pip install "ingestion[all]/" + + .PHONY: precommit_install precommit_install: ## Install the project's precommit hooks from .pre-commit-config.yaml @echo "Installing pre-commit hooks"