Skip to content

Commit

Permalink
remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Apr 1, 2024
1 parent 1650a04 commit 47ae847
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/test-indicators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,19 @@ jobs:
run: |
pip install -r requirements.txt
pip install -r requirements-test.txt
pip install pytest-cov
- 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
--cov=stock_indicators
--cov-report term
--cov-report xml:test-coverage.xml
run: pytest -vr A tests --junitxml=test-results.xml

- name: Convert test file
if: env.IS_PRIMARY == 'true'
run: |
dotnet tool install -g trx2junit
dotnet tool install trx2junit
trx2junit test-results.xml --junit2trx
- name: Post test summary
Expand All @@ -74,5 +68,3 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-title: ""
results-path: test-results.trx
# coverage-path: test-coverage.xml
# coverage-type: cobertura

0 comments on commit 47ae847

Please sign in to comment.