test: RTS server start (#17483)

## Description

- This PR includes changes for starting rts server for AST changes to take effect

## Type of change

- yml file updates

## Checklist:

- [X] My code follows the style guidelines of this project
- [X] I have performed a self-review of my own code
- [X] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [X] My changes generate no new warnings
- [X] I have added tests that prove my fix is effective or that my feature works
- [X] New and existing unit tests pass locally with my changes
This commit is contained in:
Aishwarya-U-R 2022-10-11 16:44:51 +05:30 committed by GitHub
parent b9aff18c62
commit 94aba81ad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -591,8 +591,10 @@ jobs:
# Start rts
- name: Start RTS Server
if: steps.run_result.outputs.run_result != 'success'
working-directory: ./app/rts
run: |
cd app/rts && ./start-server.sh
cp .env.example .env
./start-server.sh &
- name: Setting up the cypress tests
if: steps.run_result.outputs.run_result != 'success'

View File

@ -533,8 +533,10 @@ jobs:
# Start rts
- name: Start RTS Server
if: steps.run_result.outputs.run_result != 'success'
working-directory: ./app/rts
run: |
cd app/rts && ./start-server.sh
cp .env.example .env
./start-server.sh &
- name: Setting up the perf tests
if: steps.run_result.outputs.run_result != 'success'