forked from rucio/rucio
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (32 loc) · 1.11 KB
/
unit_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 }}