docs: improve running tests commend in README #44
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: Kurtosis E2E Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
kurtosis-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Kurtosis CLI | |
run: | | |
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list | |
sudo apt update | |
sudo apt install kurtosis-cli | |
- name: Run Kurtosis Tests | |
run: | | |
cd e2e | |
kurtosis run . --main-function-name run_juno_from_juno_sync | |
kurtosis run . --main-function-name run_juno_from_pathfinder_sync | |
kurtosis run . --main-function-name run_pathfinder_from_pathfinder_sync | |
# kurtosis run . --main-function-name run_pathfinder_from_juno_sync | |
kurtosis clean --all |