From ccb96b3ea7b3452854be6eba11e611d355ea1b58 Mon Sep 17 00:00:00 2001 From: codingwithabhi <63392662+codingwithabhi@users.noreply.github.com> Date: Mon, 21 Mar 2022 16:02:34 +0530 Subject: [PATCH] makefile-updated-to-install-all-packages-for-unittest (#3550) --- .github/workflows/py-tests.yml | 2 +- Makefile | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) 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"