[RFS] Updated RFS to perform coordinated index migration (#693) #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Testing | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'corretto' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-version: 8.0.2 | |
gradle-home-cache-cleanup: true | |
cache-read-only: false | |
- name: Start Docker Solution | |
run: ../gradlew dockerSolution:ComposeUp -x test --scan --info --stacktrace | |
working-directory: TrafficCapture | |
env: | |
OS_MIGRATIONS_GRADLE_SCAN_TOS_AGREE_AND_ENABLED: '' | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
cd test | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run E2E test script | |
run: | | |
cd test | |
chmod +x ./tests.py | |
pytest tests.py --unique_id="testindex" |