makefile-updated-to-install-all-packages-for-unittest (#3550)

This commit is contained in:
codingwithabhi 2022-03-21 16:02:34 +05:30 committed by GitHub
parent eb74487985
commit ccb96b3ea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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"