We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db838f commit 7c870e7Copy full SHA for 7c870e7
Makefile
@@ -1,5 +1,5 @@
1
# Define targets
2
-.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
3
4
# Define variables
5
PYTHON := python3
@@ -37,6 +37,10 @@ test-tgpt:
37
test-api:
38
$(PYTHON) -m unittest discover -s tests -p 'test_api.py' -f -v
39
40
+# Target to run gpt4free test
41
+test-g4f:
42
+ $(PYTHON) -m unittest discover -s tests -p 'test_gpt4free.py' -f -v
43
+
44
# Target to run pytgpt utils test
45
test-utils:
46
$(PYTHON) -m unittest discover -s tests -p 'test_utils.py' -f -v
tests/test_gpt4free_tgpt.py tests/test_gpt4free.pytests/test_gpt4free_tgpt.py renamed to tests/test_gpt4free.py
0 commit comments