Skip to content

Commit

Permalink
ci: clean
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Oct 31, 2023
1 parent 3be64ea commit addcf49
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/conda-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests & Coverage
name: Tests with conda

on: [ push, pull_request ]

Expand Down Expand Up @@ -67,11 +67,4 @@ jobs:
refiner-bop-ycbv-pbr--604090
- name: Run tests
run: |
pip install coverage
coverage run --source=happypose -m unittest
coverage xml
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: python -m unittest
12 changes: 9 additions & 3 deletions .github/workflows/poetry-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tests with poetry
name: Tests with poetry + Coverage

on: [ push, pull_request ]

Expand Down Expand Up @@ -46,5 +46,11 @@ jobs:
refiner-bop-ycbv-pbr--604090
- name: Run tests
run: |
poetry run python -m unittest
run: poetry run coverage run --source=happypose -m unittest

- name: Process coverage
run: poetry run coverage xml

- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit addcf49

Please sign in to comment.