-
Notifications
You must be signed in to change notification settings - Fork 49
70 lines (55 loc) · 1.9 KB
/
test-indicators.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
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Indicators
on:
pull_request:
branches: ["main"]
jobs:
test:
name: unit tests
runs-on: ${{ matrix.os }}
permissions:
contents: read
pull-requests: write
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ["3.8", "3.12"]
dotnet-version: ["6.x", "8.x"]
env:
# identifying primary configuration so only one reports coverage
IS_PRIMARY: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12' && matrix.dotnet-version == '8.x' }}
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
dotnet-quality: "ga"
- name: Setup Python
uses: actions/setup-python@v5
with:
cache: "pip"
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r requirements-test.txt
- name: Test indicators
if: env.IS_PRIMARY == 'false'
run: pytest -vr A tests
- name: Test indicators with coverage
if: env.IS_PRIMARY == 'true'
run: pytest -vr A tests --junitxml=test-results.xml
# - name: Convert test file
# if: env.IS_PRIMARY == 'true'
# run: |
# dotnet tool install --global trx2junit
# trx2junit test-results.xml --junit2trx
# - name: Post test summary
# uses: bibipkins/[email protected]
# if: env.IS_PRIMARY == 'true' && always()
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# comment-title: ""
# results-path: test-results.trx