Skip to content

Commit

Permalink
currently linting/tests are failing in gtihub actions due to makefile…
Browse files Browse the repository at this point in the history
… failing to find requirements.txt in relative path (bcgov#2361)
  • Loading branch information
bolyachevets authored Dec 16, 2023
1 parent d9784e9 commit 01f7371
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions legal-api/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ install: clean ## Install python virtrual environment
test -f venv/bin/activate || python3 -m venv $(CURRENT_ABS_DIR)/venv ;\
. venv/bin/activate ;\
pip install --upgrade pip ;\
pip install -Ur requirements.txt
pip install -Ur $(CURRENT_ABS_DIR)/requirements.txt

install-dev: ## Install local application
. venv/bin/activate ; \
pip install -Ur requirements/dev.txt; \
pip install -Ur $(CURRENT_ABS_DIR)/requirements/dev.txt; \
pip install -e .

#################################################################################
Expand Down

0 comments on commit 01f7371

Please sign in to comment.