From 3dd012533de421a3b9e831925792cd580591589e Mon Sep 17 00:00:00 2001 From: Ryosuke Ito Date: Sun, 9 Jan 2022 11:18:49 +0900 Subject: [PATCH] Migrate from Coveralls to Code Climate --- .github/workflows/test.yml | 43 ++++++++++++++++++++++++++++++++------ tox.ini | 14 +++---------- 2 files changed, 40 insertions(+), 17 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3556760..0cc8b56 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,16 +16,47 @@ jobs: tox-env: py38 - python-version: '3.9' tox-env: py39 - - python-version: '2.7' - tox-env: coveralls - - python-version: '2.7' - tox-env: flake8 steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - run: pip install tox + - name: Install cc-test-reporter + run: | + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter + chmod +x ./cc-test-reporter + - run: pip install coverage tox + - run: ./cc-test-reporter before-build - run: tox -e ${{ matrix.tox-env }} + - name: Format coverage + run: | + coverage xml + ./cc-test-reporter format-coverage --input-type coverage.py --output 'coverage.${{ matrix.python-version }}.xml' + - uses: actions/upload-artifact@v2 + with: + name: coverages + path: coverage.${{ matrix.python-version }}.xml + upload-coverage: + runs-on: ubuntu-20.04 + needs: test + steps: + - uses: actions/download-artifact@v2 + with: + name: coverages + - name: Install cc-test-reporter + run: | + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter + chmod +x ./cc-test-reporter + - name: Upload coverage + run: ./cc-test-reporter sum-coverage --output - coverage.*.xml | ./cc-test-reporter upload-coverage --debug --input - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} + lint: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: '3.9' + - run: pip install tox + - run: tox -e flake8 diff --git a/tox.ini b/tox.ini index 80dda79..8cabbcb 100644 --- a/tox.ini +++ b/tox.ini @@ -2,18 +2,10 @@ envlist = py{27,37,38,39}, flake8 [testenv] -commands = {envpython} -m unittest discover -v tests - -[testenv:coveralls] -basepython = python2.7 -passenv = - COVERALLS_REPO_TOKEN -deps = coveralls -commands = - coverage run --source=backquotes -m unittest discover tests - coveralls +deps = coverage +commands = {envpython} -m coverage run --source=backquotes -m unittest discover -v tests [testenv:flake8] -basepython = python2.7 +basepython = python3.9 deps = flake8 commands = flake8 backquotes.py setup.py