Skip to content

Commit 7c870e7

Browse files
committed
feat: Add test-g4f target to Makefile
fix: Remove deleted test_gpt4free_tgpt.py file
1 parent 7db838f commit 7c870e7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Define targets
2-
.PHONY: install install-minimal test test-tgpt test-api test-utils build build-deb build-minimal-deb clean
2+
.PHONY: install install-minimal test test-tgpt test-g4f test-api test-utils build build-deb build-minimal-deb clean
33

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

40+
# Target to run gpt4free test
41+
test-g4f:
42+
$(PYTHON) -m unittest discover -s tests -p 'test_gpt4free.py' -f -v
43+
4044
# Target to run pytgpt utils test
4145
test-utils:
4246
$(PYTHON) -m unittest discover -s tests -p 'test_utils.py' -f -v

0 commit comments

Comments
 (0)