feat: Replace remove_warmup_periods() implementation with Python #59
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |