We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583518d commit 32ddcebCopy full SHA for 32ddceb
.github/workflows/keploy.yml
@@ -32,12 +32,11 @@ jobs:
32
python -m pip install --upgrade pip
33
pip install -r requirements.txt
34
35
- - name: Download and install Keploy
+ - name: Install Keploy CLI
36
run: |
37
- curl -L https://github.com/keploy/keploy/releases/download/v0.2.7/keploy-linux-amd64 -o keploy
38
- chmod +x keploy
39
- sudo mv keploy /usr/local/bin/keploy
+ curl --silent -L https://keploy.io/ent/install.sh | bash
40
41
- - name: Run Keploy test
+ - name: Run Keploy Test Suite
42
43
- keploy test -c "python3 flask_api_server.py" --delay 10
+ export KEPLOY_API_KEY=${{ secrets.KEPLOY_API_KEY }}
+ keploy test-suite --app=03d24177-315c-4ee1-a3ac-64ed0ab38567 --base-path http://localhost:8080/books --cloud
0 commit comments