forked from gak/pycallgraph
-
Notifications
You must be signed in to change notification settings - Fork 7
171 lines (165 loc) · 4.87 KB
/
ci.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
name: CI
on:
pull_request:
push:
branches:
- main
schedule:
- cron: 0 6 1 * *
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
setup:
strategy:
matrix:
python_version: ["3.8.18", "3.9.19", "3.10.14", "3.11.8", "3.12.2"]
fail-fast: false
name: setup - Python ${{ matrix.python_version }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'
cache-dependency-path: |
requirements/development.txt
- name: Install dependencies
run: |
python -m pip install -r requirements/development.txt
lint:
needs:
- setup
strategy:
matrix:
python_version: ["3.8.18", "3.9.19", "3.10.14", "3.11.8", "3.12.2"]
fail-fast: false
name: Lint - Python ${{ matrix.python_version }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'
cache-dependency-path: |
requirements/development.txt
- name: Install dependencies
run: |
python -m pip install -r requirements/development.txt
- name: Lint code
run: |
flake8 --exclude=__init__.py,memory_profiler.py pycallgraph
flake8 --ignore=F403 test
flake8 examples
test:
needs:
- setup
strategy:
matrix:
python_version: ["3.8.18", "3.9.19", "3.10.14", "3.11.8", "3.12.2"]
fail-fast: false
name: Test - Python ${{ matrix.python_version }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'
cache-dependency-path: |
requirements/development.txt
- name: Install dependencies
run: |
python -m pip install -r requirements/development.txt
- name: Install system dependencies
run: sudo apt update -yqq && sudo apt install -yqq graphviz
- name: Run tests
run: |
export PYTHONPATH=$PYTHONPATH:$(pwd)
py.test \
--ignore=pycallgraph/memory_profiler.py \
test pycallgraph examples
- name: Collect coverage
run: |
coverage run --source pycallgraph,scripts -m pytest
coverage report -m
curated_tests:
needs:
- setup
strategy:
matrix:
python_version: ["3.8.18", "3.9.19", "3.10.14", "3.11.8", "3.12.2"]
fail-fast: false
name: Curated Tests - Python ${{ matrix.python_version }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'
cache-dependency-path: |
requirements/development.txt
- name: Install dependencies
run: |
python -m pip install -r requirements/development.txt
- name: Install system dependencies
run: sudo apt update -yqq && sudo apt install -yqq graphviz
- name: Run tests
run: |
export PYTHONPATH=$PYTHONPATH:$(pwd)
echo ""
echo ""
echo ""
echo "#"
echo "# Help command test"
echo "#"
scripts/pycallgraph --help
echo ""
echo ""
echo ""
echo "#"
echo "# Example from docs with real existing file"
echo "#"
python scripts/pycallgraph graphviz -- examples/graphviz/basic.py
echo ""
echo ""
echo ""
echo "#"
echo "# Basic using example file and no groups"
echo "#"
python scripts/pycallgraph --no-groups graphviz -- examples/graphviz/basic.py
echo ""
echo ""
echo ""
echo "#"
echo "# Basic using example file tracing standard library calls also"
echo "#"
python scripts/pycallgraph --stdlib graphviz -- examples/graphviz/basic.py
echo ""
echo ""
echo ""
echo "#"
echo "# Basic using example with experimental memory tracking (without psutil)"
echo "#"
python scripts/pycallgraph --memory graphviz -- examples/graphviz/basic.py
echo ""
echo ""
echo ""
pip install psutil
echo "#"
echo "# Basic using example with experimental memory tracking (with psutil)"
echo "#"
python scripts/pycallgraph --memory graphviz -- examples/graphviz/basic.py
echo ""
echo ""
echo ""