Skip to content

feat(python-sdk): improve CI #64

feat(python-sdk): improve CI

feat(python-sdk): improve CI #64

Workflow file for this run

name: python
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install deps
run: |
pip install -r requirements.txt
pip install -r test-requirements.txt
cleanup_tests_before_tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: Cleanup Site
run: ./cleanupSite.sh
env:
BASIC_AUTH_USERNAME: ${{ secrets.BASIC_AUTH_USERNAME }}
BASIC_AUTH_PASSWORD: ${{ secrets.BASIC_AUTH_PASSWORD }}
SUB_DOMAIN: ${{ secrets.SUB_DOMAIN }}
DOMAIN: ${{ secrets.DOMAIN }}
- name: Wait 10 seconds to allow site be cleared
run: sleep 10
run_tests:
runs-on: ubuntu-latest
needs: cleanup_site_before_tests

Check failure on line 45 in .github/workflows/python.yml

View workflow run for this annotation

GitHub Actions / python

Invalid workflow file

The workflow is not valid. .github/workflows/python.yml (Line: 45, Col: 12): Job 'run_tests' depends on unknown job 'cleanup_site_before_tests'. .github/workflows/python.yml (Line: 69, Col: 12): Job 'cleanup_tests_after_tests' depends on job 'run_tests' which creates a cycle in the dependency graph.
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install deps
run: |
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Tests
run: pytest tests/
env:
BASIC_AUTH_USERNAME: ${{ secrets.BASIC_AUTH_USERNAME }}
BASIC_AUTH_PASSWORD: ${{ secrets.BASIC_AUTH_PASSWORD }}
SUBDOMAIN: ${{ secrets.SUBDOMAIN }}
DOMAIN: ${{ secrets.DOMAIN }}
cleanup_tests_after_tests:
runs-on: ubuntu-latest
needs: run_tests
steps:
- uses: actions/checkout@v3
- name: Cleanup Site
run: ./cleanupSite.sh
env:
BASIC_AUTH_USERNAME: ${{ secrets.BASIC_AUTH_USERNAME }}
BASIC_AUTH_PASSWORD: ${{ secrets.BASIC_AUTH_PASSWORD }}
SUB_DOMAIN: ${{ secrets.SUB_DOMAIN }}
DOMAIN: ${{ secrets.DOMAIN }}
- name: Wait 10 seconds to allow site be cleared
run: sleep 10