Skip to content

Testing adding flags for codecov, separating unit and integration tests. #725

Testing adding flags for codecov, separating unit and integration tests.

Testing adding flags for codecov, separating unit and integration tests. #725

Workflow file for this run

name: testing
on:
push:
branches:
- develop
pull_request:
# Cancel running workflows when additional changes are pushed
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-fallback-value
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt
pip install .[dev]
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure
build-test-bench:
name: "Build test bench containers"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build test bench container
uses: docker/bake-action@v5
with:
load: true
files: tests/integration/dockerfiles/docker-bake.hcl
set: |
*.cache-to=type=gha,scope=global,mode=max
*.cache-from=type=gha,scope=global
test:
services:
local_mongodb:
image: mongo:5.0
ports:
- 27017:27017
needs: [build-test-bench]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install mongo-tools
run: |
wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2204-x86_64-100.10.0.deb
sudo apt install ./mongodb-database-tools-*-100.10.0.deb
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Load test bench containers
uses: docker/bake-action@v5
with:
load: true
files: tests/integration/dockerfiles/docker-bake.hcl
set: |
*.cache-from=type=gha,scope=global
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt
pip install .[tests]
- name: Unit tests
run: |
COVERAGE_FILE=.coverage-unit \
pytest \
--pytest-durations-min=1 \
--cov=jobflow_remote --cov-report= --cov-config pyproject.toml \
--ignore tests/integration
- name: Integration tests
run: |
COVERAGE_FILE=.coverage-integration \
pytest \
--pytest-durations-min=1 \
--cov=jobflow_remote --cov-report= --cov-config pyproject.toml \
tests/integration
# For some reason, the codecov update fails when passing the name of the file (e.g. ".coverage-unit")
# so we use the standard name and do some silly moving of files ...
- name: Move .coverage-unit file
run: |
mv .coverage-unit .coverage
- name: Upload unit tests coverage report to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: .coverage # Here for some reason, we need to have .coverage as a filename
flags: unit_tests
name: unit_tests
# For some reason, the codecov update fails when passing the name of the file (e.g. ".coverage-unit")
# so we use the standard name and do some silly moving of files ...
- name: Move back .coverage-unit file and move .coverage-integration file
run: |
mv .coverage .coverage-unit
mv .coverage-integration .coverage
- name: Upload integration tests coverage report to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: .coverage # Here for some reason, we need to have .coverage as a filename
flags: integration_tests
name: integration_tests
# For some reason, the codecov update fails when passing the name of the file (e.g. ".coverage-unit")
# so we use the standard name and do some silly moving of files ...
- name: Move back .coverage-integration file
run: |
mv .coverage .coverage-integration
- name: Generate combined coverage report for unit and integration tests
run: |
coverage combine .coverage-unit .coverage-integration
- name: Upload all (unit+integration) tests coverage report to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: .coverage # Here for some reason, we need to have .coverage as a filename
flags: all_tests
name: all_tests
docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install docs dependencies
run: |
python -m pip install -U pip
pip install -U setuptools wheel
# Required to generate rst files from markdown
sudo apt install pandoc
pip install -r requirements/requirements.txt
pip install .[docs]
- name: Build Sphinx docs
working-directory: doc
run: |
# cannot use sphinx build directly as the makefile handles generation
# of some rst files
make html