pin sniffio<1.3.1 #58
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: Test Suite | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [3.8, 3.9, "3.10"] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Dependencies | |
run: | | |
pip install tox | |
- name: Run lint | |
run: tox -e flake8 | |
lint-old-python: | |
name: Lint on older Python versions | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: [3.5, 3.6, 3.7] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Dependencies | |
run: | | |
pip install tox | |
- name: Run lint | |
run: tox -e flake8 | |
functional-test: | |
name: Functional test with LXD | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
juju: ["3/stable", 2.9/stable] | |
timeout-minutes: 360 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Constrain Tox Environment for juju 2.9 | |
if: ${{ matrix.juju == '2.9/stable' }} | |
run: | | |
echo "TEST_CONSTRAINTS_FILE=constraints-juju29.txt" >> $GITHUB_ENV | |
- name: Install Dependencies | |
run: | | |
pip install tox | |
- name: Setup operator environment | |
uses: charmed-kubernetes/actions-operator@main | |
with: | |
juju-channel: ${{ matrix.juju }} | |
- name: Run test | |
run: tox -e func | |
- name: Show Status | |
if: ${{ always() }} | |
run: | | |
model=$(juju models --format yaml|grep "^- name:.*zaza"|cut -f2 -d/); | |
juju status -m "$model" | |
- name: Show Error Logs | |
if: ${{ always() }} | |
run: | | |
model=$(juju models --format yaml|grep "^- name:.*zaza"|cut -f2 -d/); | |
mkdir tmp | |
juju debug-log -m "$model" --replay --no-tail --level ERROR | tee tmp/juju-debug-log.txt | |
juju status 2>&1 | tee tmp/juju-status.txt | |
juju-crashdump -s -m controller -a debug-layer -a config -o tmp/ | |
juju-crashdump -s -m $model -a debug-layer -a config -o tmp/ | |
- name: Upload debug artifacts | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-run-artifacts-${{ matrix.juju }} | |
path: tmp |