Skip to content

Commit

Permalink
Merge pull request #206 from IMDA-BTG/imda-benedictlee-patch-1
Browse files Browse the repository at this point in the history
Update integration-tests.yml
  • Loading branch information
imda-benedictlee authored Nov 18, 2023
2 parents cea3ac3 + 6dac21f commit c50e521
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,14 @@ jobs:
cd ../ai-verify-portal
npm run start &> portal.log &
- name: Checkout API Mock Server
uses: actions/checkout@v3
with:
repository: IMDA-BTG/api-model-server
token: ${{ secrets.CHECKOUT_TOKEN }}
ref: main
path: qa-test/api-model-server

- name: Checkout smoke tests
uses: actions/checkout@v3
with:
Expand All @@ -201,6 +209,15 @@ jobs:
path: qa-test/backend-testing
submodules: recursive

- name: Run API Mock Server
if: ${{ ! cancelled() }}
run: |
cd qa-test/api-model-server
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
bash regression_run_https.sh &
- name: Run smoke tests
if: ${{ ! cancelled() }}
run: |
Expand Down

0 comments on commit c50e521

Please sign in to comment.