locust-cloud 1.24.3.dev4__tar.gz → 1.24.3.dev8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/.github/workflows/daily-check.yml +11 -1
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/PKG-INFO +1 -1
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/.github/workflows/tests.yml +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/.gitignore +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/.pre-commit-config.yaml +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/.vscode/extensions.json +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/.vscode/launch.json +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/.vscode/settings.json +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/LICENSE +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/README.md +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/__init__.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/actions.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/apisession.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/args.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/cloud.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/common.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/docs/.gitignore +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/docs/1-first-run.rst +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/docs/2-examples.rst +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/docs/images/locust-cloud-screenshot.png +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/docs/locust-cloud.rst +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/input_events.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/web_login.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locust_cloud/websocket.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/locustfile.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/pyproject.toml +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/testdata/extra-files/extra.txt +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/testdata/extra-package/example/__init__.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/testdata/extra-package/setup.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/testdata/requirements.txt +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/tests/args_test.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/tests/cloud_test.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/tests/url_tester.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/tests/web_login_test.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/tests/websocket_test.py +0 -0
- {locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/uv.lock +0 -0
@@ -52,15 +52,19 @@ jobs:
|
|
52
52
|
# - run: bash -ec "! grep WARNING output.txt"
|
53
53
|
- name: On failure, notify slack
|
54
54
|
if: failure()
|
55
|
-
run: curl -d "{\"text\":\"Failed run $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\"}" $SLACK_NOTIFICATIONS_WEBHOOK
|
55
|
+
run: curl -d "{\"text\":\"<!channel> Failed full run $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\"}" $SLACK_NOTIFICATIONS_WEBHOOK
|
56
56
|
- name: Make sure to delete (only really needed for mock)
|
57
57
|
if: always()
|
58
58
|
run: uv run --with locust --with . locust --delete
|
59
59
|
|
60
60
|
locust_url_test:
|
61
|
+
needs: [locust_cloud_full_run]
|
61
62
|
runs-on: ubuntu-latest
|
62
63
|
steps:
|
63
64
|
- uses: actions/checkout@v4
|
65
|
+
with:
|
66
|
+
fetch-depth: 0
|
67
|
+
fetch-tags: true
|
64
68
|
- uses: astral-sh/setup-uv@v5
|
65
69
|
- run: uv venv --python 3.11
|
66
70
|
- run: uv run playwright install --with-deps
|
@@ -68,3 +72,9 @@ jobs:
|
|
68
72
|
env:
|
69
73
|
LOCUSTCLOUD_USERNAME: ${{ secrets.LOCUSTCLOUD_USERNAME }}
|
70
74
|
LOCUSTCLOUD_PASSWORD: ${{ secrets.LOCUSTCLOUD_PASSWORD }}
|
75
|
+
- name: On failure, notify slack
|
76
|
+
if: failure()
|
77
|
+
run: curl -d "{\"text\":\"<!channel> Failed url test run $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID\"}" $SLACK_NOTIFICATIONS_WEBHOOK
|
78
|
+
- name: Make sure to delete (url tester doesn't self-destroy)
|
79
|
+
if: always()
|
80
|
+
run: uv run --with locust --with . locust --delete
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{locust_cloud-1.24.3.dev4 → locust_cloud-1.24.3.dev8}/testdata/extra-package/example/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|