Loading .github/workflows/ci_testing.yml +8 −1 Original line number Original line Diff line number Diff line Loading @@ -40,6 +40,13 @@ jobs: - name: Test Python Package - name: Test Python Package run: | run: | pytest --cov-report=xml --cov=ale tests/pytests -vv pytest --cov-report=xml --cov=ale tests/pytests -vv - name: Upload Python Coverage uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' - name: Build C++ Package - name: Build C++ Package run: | run: | mkdir -p build mkdir -p build Loading @@ -50,7 +57,7 @@ jobs: run: | run: | cd build cd build ctest -VV ctest -VV - name: Upload Coverage - name: Upload C++ Coverage uses: codecov/codecov-action@v1 uses: codecov/codecov-action@v1 with: with: token: ${{ secrets.CODECOV_TOKEN }} token: ${{ secrets.CODECOV_TOKEN }} Loading Loading
.github/workflows/ci_testing.yml +8 −1 Original line number Original line Diff line number Diff line Loading @@ -40,6 +40,13 @@ jobs: - name: Test Python Package - name: Test Python Package run: | run: | pytest --cov-report=xml --cov=ale tests/pytests -vv pytest --cov-report=xml --cov=ale tests/pytests -vv - name: Upload Python Coverage uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' - name: Build C++ Package - name: Build C++ Package run: | run: | mkdir -p build mkdir -p build Loading @@ -50,7 +57,7 @@ jobs: run: | run: | cd build cd build ctest -VV ctest -VV - name: Upload Coverage - name: Upload C++ Coverage uses: codecov/codecov-action@v1 uses: codecov/codecov-action@v1 with: with: token: ${{ secrets.CODECOV_TOKEN }} token: ${{ secrets.CODECOV_TOKEN }} Loading