Skip to content

Commit

Permalink
Small fix for dev .env (#1591)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored Jun 27, 2024
1 parent f39b116 commit 0fa5866
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions bcol-api/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ clean-test: ## clean test files
rm -fr htmlcov/

install: clean
unset HOME ## unset HOME because it's in the DEV .env file, will cause permissions issues
pip install poetry ;\
poetry install

Expand Down
1 change: 1 addition & 0 deletions jobs/ftp-poller/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ clean-test: ## clean test files
rm -fr htmlcov/

install: clean
unset HOME ## unset HOME because it's in the DEV .env file, will cause permissions issues
pip install poetry ;\
poetry install

Expand Down
1 change: 1 addition & 0 deletions jobs/payment-jobs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ clean-test: ## clean test files
rm -fr htmlcov/

install: clean
unset HOME ## unset HOME because it's in the DEV .env file, will cause permissions issues
pip install poetry ;\
poetry install

Expand Down
1 change: 1 addition & 0 deletions pay-admin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ clean-test: ## clean test files
rm -fr htmlcov/

install: clean
unset HOME ## unset HOME because it's in the DEV .env file, will cause permissions issues
pip install poetry ;\
poetry install

Expand Down
1 change: 1 addition & 0 deletions pay-api/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ clean-test: ## clean test files
rm -fr htmlcov/

install: clean
unset HOME ## unset HOME because it's in the DEV .env file, will cause permissions issues
pip install poetry ;\
poetry install

Expand Down
3 changes: 2 additions & 1 deletion pay-queue/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ clean-test: ## clean test files
rm -f .coverage
rm -fr htmlcov/

install: clean
install: clean
unset HOME ## unset HOME because it's in the DEV .env file, will cause permissions issues
pip install poetry ;\
poetry install

Expand Down

0 comments on commit 0fa5866

Please sign in to comment.