We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2bc3bb + dbb3aa8 commit ea4d82bCopy full SHA for ea4d82b
.github/workflows/run_tests.yaml
@@ -52,6 +52,9 @@ jobs:
52
- name: Install deps
53
run: |
54
pip install -r requirements.txt
55
+ - name: Create config file
56
+ run: |
57
+ echo '{"credsStore":"file"}' > config
58
- name: Run Tests
59
env:
60
GPTSCRIPT_BIN: .\gptscript.exe
tox.ini
@@ -9,6 +9,7 @@ passenv = OPENAI_API_KEY
9
GPTSCRIPT_BIN
10
GPTSCRIPT_URL
11
GPTSCRIPT_DISABLE_SERVER
12
+ GPTSCRIPT_CONFIG_FILE
13
commands =
14
install_gptscript
15
pytest -s tests/
0 commit comments