Apply linear backoff strategy to Client smoke tests #1124
Workflow file for this run
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: smoke_test | |
on: | |
push: | |
paths: | |
- 'smoke_tests/**' | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
paths: | |
- 'smoke_tests/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- run: python -m pip install -U pip setuptools | |
- run: python -m pip install tox | |
- name: Run smoke tests (localdeps) | |
env: | |
FUNCX_SMOKE_CLIENT_ID: ${{ secrets.API_CLIENT_ID }} | |
FUNCX_SMOKE_CLIENT_SECRET: ${{ secrets.API_CLIENT_SECRET }} | |
run: | | |
cd smoke_tests | |
tox -e localdeps |