-
-
Notifications
You must be signed in to change notification settings - Fork 417
35 lines (32 loc) · 1.01 KB
/
python.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
name: Code tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: "3.7"
architecture: "x64"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install packages
run: sudo apt-get install gcc ipmitool
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install pytest pytest-cov
pip install -r requirements.txt
- name: Test with pytest pytest-cov
run: |
pytest --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html