Improve: network tooling and perfs #790
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: "🎳 Tester" | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**/*.py" | |
- ".github/workflows/tests.yml" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**/*.py" | |
- ".github/workflows/tests.yml" | |
- "requirements/base.txt" | |
- "requirements/testing.txt" | |
- tests/fixtures/ | |
env: | |
PROJECT_FOLDER: "qgis_deployment_toolbelt" | |
jobs: | |
unit-test: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-22.04, windows-latest] | |
python-version: ["3.10", "3.11"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Get source code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: "requirements/*.txt" | |
- name: Install project requirements | |
run: | | |
python -m pip install -U pip setuptools wheel | |
python -m pip install -U -r requirements.txt | |
python -m pip install -U -r requirements/testing.txt | |
- name: Install project as a package | |
run: python -m pip install -e . | |
- name: Unit tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
QDT_LOGS_LEVEL: 4 | |
run: pytest | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
integration-test: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-22.04, windows-latest] | |
python-version: ["3.10", "3.11"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Get source code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: "requirements/*.txt" | |
- name: Install project requirements | |
run: | | |
python -m pip install -U pip setuptools wheel | |
python -m pip install -U -r requirements.txt | |
- name: Install project as a package | |
run: python -m pip install -e . | |
- name: QDT - Echoing help | |
run: qdt --help | |
- name: QDT - Echoing version | |
run: qdeploy-toolbelt --version | |
- name: QDT - Sample scenario | |
run: qgis-deployment-toolbelt --verbose | |
- name: QDT - Sample scenario | |
run: qgis-deployment-toolbelt --verbose --no-logfile |