Skip to content

Commit

Permalink
feat: Add test-g4f target to Makefile
Browse files Browse the repository at this point in the history
fix: Remove deleted test_gpt4free_tgpt.py file
  • Loading branch information
Simatwa committed Nov 10, 2024
1 parent 7db838f commit 7c870e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Define targets
.PHONY: install install-minimal test test-tgpt test-api test-utils build build-deb build-minimal-deb clean
.PHONY: install install-minimal test test-tgpt test-g4f test-api test-utils build build-deb build-minimal-deb clean

# Define variables
PYTHON := python3
Expand Down Expand Up @@ -37,6 +37,10 @@ test-tgpt:
test-api:
$(PYTHON) -m unittest discover -s tests -p 'test_api.py' -f -v

# Target to run gpt4free test
test-g4f:
$(PYTHON) -m unittest discover -s tests -p 'test_gpt4free.py' -f -v

# Target to run pytgpt utils test
test-utils:
$(PYTHON) -m unittest discover -s tests -p 'test_utils.py' -f -v
Expand Down
File renamed without changes.

0 comments on commit 7c870e7

Please sign in to comment.