Skip to content

Commit

Permalink
[Ci/CD][Tests] Trying to send coverage data early
Browse files Browse the repository at this point in the history
Before combine
  • Loading branch information
set-soft committed Mar 22, 2024
1 parent b732c00 commit 609bf57
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@ jobs:
# Create the caches with macros
python3-coverage run src/kibot --help-outputs > /dev/null
./g4.sh
- name: Upload Coverage
# Don't mix stable coverage with development coverage
if: github.ref == 'refs/heads/dev'
uses: coverallsapp/github-action@v2
with:
flag-name: independent
parallel: true
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Store coverage
if: ${{ always() }}
uses: actions/upload-artifact@v4
Expand All @@ -150,14 +158,6 @@ jobs:
name: Test_Output_Independent
# Important! empty directories are skipped!!!!
path: output
- name: Upload Coverage
# Don't mix stable coverage with development coverage
if: github.ref == 'refs/heads/dev'
uses: coverallsapp/github-action@v2
with:
flag-name: independent
parallel: true
github-token: ${{ secrets.GITHUB_TOKEN }}

create_images:
name: Triggers the docker images creation
Expand Down

0 comments on commit 609bf57

Please sign in to comment.