Skip to content

Unit Tests

Unit Tests #6

Workflow file for this run

name: Unit Tests
on:
pull_request:
push:
schedule:
- cron: '0 3 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Upgrade base dependencies
run: |
sudo apt-get update
sudo apt-get install libkrb5-dev gcc libxmlsec1 libxmlsec1-dev
python -m pip install --upgrade pip setuptools wheel xmlsec==1.3.13
- name: Install dev dependencies
run: pip install -r requirements/requirements.dev.txt
- name: Run unit tests
run: pytest tests/rucio --cov=lib/rucio
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}