forked from networkx/networkx
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (36 loc) · 1009 Bytes
/
coverage.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: coverage
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
report:
runs-on: Ubuntu-20.04
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Before install
run: |
sudo apt-get update
sudo apt-get install libgdal-dev graphviz graphviz-dev
- name: Install packages
run: |
pip install --upgrade pip wheel setuptools
pip install -r requirements.txt
pip install -r requirements/extra.txt
export CPLUS_INCLUDE_PATH=/usr/include/gdal
export C_INCLUDE_PATH=/usr/include/gdal
pip install gdal==3.0.4
pip install .
pip list
- name: Test NetworkX
run: |
pytest --cov=networkx --runslow --doctest-modules --pyargs networkx
codecov