Skip to content

Commit

Permalink
fix(make): make clean changed to make clean-artifacts (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
gphorvath authored Sep 20, 2024
1 parent 4a19c8e commit 480a35b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ silent-deploy-gpu:

silent-fresh-leapfrogai-gpu:
@echo "Cleaning up previous artifacts..."
@$(MAKE) clean > /dev/null 2>&1
@$(MAKE) clean-artifacts > /dev/null 2>&1
@echo "Logs at .logs/*.log"
@mkdir -p .logs
@echo "Creating a uds gpu enabled cluster..."
Expand All @@ -316,7 +316,7 @@ silent-fresh-leapfrogai-gpu:

silent-fresh-leapfrogai-cpu:
@echo "Cleaning up previous artifacts..."
@$(MAKE) clean > /dev/null 2>&1
@$(MAKE) clean-artifacts > /dev/null 2>&1
@echo "Logs at .logs/*.log"
@mkdir -p .logs
@echo "Creating a uds cpu-only cluster..."
Expand Down
4 changes: 2 additions & 2 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ test-api-integration:
fi
@env $$(cat .env | xargs) LFAI_RUN_NIAH_TESTS=$(LFAI_RUN_NIAH_TESTS) PYTHONPATH=$$(pwd) pytest -vv -s tests/integration/api

test-api-unit: set-supabase
LFAI_RUN_REPEATER_TESTS=$(LFAI_RUN_REPEATER_TESTS) PYTHONPATH=$$(pwd) pytest -vv -s tests/unit
test-api-unit:
LFAI_RUN_REPEATER_TESTS=$(LFAI_RUN_REPEATER_TESTS) PYTHONPATH=$$(pwd) python -m pytest -vv -s tests/unit
LFAI_RUN_REPEATER_TESTS=$(LFAI_RUN_REPEATER_TESTS) PYTHONPATH=$$(pwd) python -m pytest -vv -s tests/pytest

test-load:
Expand Down

0 comments on commit 480a35b

Please sign in to comment.