mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-15 20:46:58 +00:00
makefile-updated-to-install-all-packages-for-unittest (#3550)
This commit is contained in:
parent
eb74487985
commit
ccb96b3ea7
2
.github/workflows/py-tests.yml
vendored
2
.github/workflows/py-tests.yml
vendored
@ -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
|
||||
|
5
Makefile
5
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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user