← back to Exo
set different api ports so they dont conlict
8efd656303c7f4ce5102e597524ccc2882af1aef · 2024-07-19 23:51:48 -0700 · Alex Cheema
Files touched
M .github/workflows/test.yml
Diff
commit 8efd656303c7f4ce5102e597524ccc2882af1aef
Author: Alex Cheema <alexcheema123@gmail.com>
Date: Fri Jul 19 23:51:48 2024 -0700
set different api ports so they dont conlict
---
.github/workflows/test.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 353c5cdf..12a2645f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -37,11 +37,11 @@ jobs:
- name: Run integration test
run: |
# Start first instance
- DEBUG_DISCOVERY=9 DEBUG=9 python3 main.py --listen-port 5678 --broadcast-port 5679 > output1.log 2>&1 &
+ DEBUG_DISCOVERY=9 DEBUG=9 python3 main.py --listen-port 5678 --broadcast-port 5679 --chatgpt-api-port 8000 > output1.log 2>&1 &
PID1=$!
# Start second instance
- DEBUG_DISCOVERY=9 DEBUG=9 python3 main.py --listen-port 5679 --broadcast-port 5678 > output2.log 2>&1 &
+ DEBUG_DISCOVERY=9 DEBUG=9 python3 main.py --listen-port 5679 --broadcast-port 5678 --chatgpt-api-port 8001 > output2.log 2>&1 &
PID2=$!
# Wait for discovery
← 8dd17fe0 integration test with discovery
·
back to Exo
·
insstall in workflow d9516d2e →