-
Notifications
You must be signed in to change notification settings - Fork 5
58 lines (46 loc) · 1.41 KB
/
test_coverage.yaml
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
# use pytest-cov to see what percentage of the code is being covered by tests
# WARNING: this workflow will fail if any of the tests within it fail
name: Test Coverage
permissions: read-all
on:
push:
branches:
- main
- develop
- trunk-merge/**
pull_request:
branches:
- main
- develop
concurrency:
# github.workflow: name of the workflow
# github.event.pull_request.number || github.ref: pull request number or branch name if not a pull request
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# Cancel in-progress runs when a new workflow with the same group name is triggered
cancel-in-progress: true
jobs:
test-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.12]
env:
CRIPT_HOST: https://lb-stage.mycriptapp.org/
CRIPT_TOKEN: 125433546
CRIPT_STORAGE_TOKEN: 987654321
CRIPT_TESTS: False
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: upgrade pip
run: pip install --upgrade pip
- name: Install CRIPT Python SDK
run: pip install -e .
- name: Install requirements_dev.txt
run: pip install -r requirements_dev.txt
- name: Test Coverage
run: pytest --cov --cov-fail-under=85