We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb53d9 commit 8a6a5e1Copy full SHA for 8a6a5e1
1 file changed
.github/pytest-coverage.yaml
@@ -0,0 +1,28 @@
1
+name: Pytest with Coverage
2
+
3
+on:
4
+ pull_request:
5
+ branches: [humble-devel]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
14
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: '3.10.12'
19
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install -r test/requirements.txt
24
+ pip install pytest pytest-cov
25
26
+ - name: Run tests with coverage
27
28
+ pytest --cov=. --cov-report=xml --cov-report=term
0 commit comments