-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (34 loc) · 1007 Bytes
/
pytest.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
name: pytest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pyTestCov:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Checkout Source
uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
sudo apt-get install gdal-bin libgdal-dev
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest-timeout
pip install pytest-cov
pip install pytest-mock
- name: Run Tests
run: python -m pytest -v -m unittests --cov=sarwind --timeout=120
- name: Upload to Codecov
uses: codecov/codecov-action@v3