This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch github_actions_take_2 in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 497bdfa7cf77fd9f20614ddadee9c2fb426d5e99 Author: Tomaz Muraus <[email protected]> AuthorDate: Sun Dec 13 14:12:55 2020 +0100 Fix coverage step. --- .github/workflows/main.yml | 2 +- tox.ini | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c1f7bf5..cb5a77a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -89,7 +89,7 @@ jobs: pip install "tox==3.20.1" - name: Run Checks run: | - tox -e coverage-travis + tox -e coverage-ci lint_checks: name: Run various lint checks diff --git a/tox.ini b/tox.ini index 0244adc..1b3b81a 100644 --- a/tox.ini +++ b/tox.ini @@ -224,8 +224,8 @@ setenv = commands = cp libcloud/test/secrets.py-dist libcloud/test/secrets.py coverage run --source=libcloud setup.py test -[testenv:coverage-travis] -passenv = TOXENV CI TRAVIS TRAVIS_* +[testenv:coverage-ci] +passenv = TOXENV CI GITHUB_* deps = -r{toxinidir}/requirements-tests.txt paramiko==2.7.1 @@ -236,7 +236,7 @@ setenv = CRYPTOGRAPHY_ALLOW_OPENSSL_102=1 commands = cp libcloud/test/secrets.py-dist libcloud/test/secrets.py coverage run --source=libcloud setup.py test - codecov + codecov==2.1.10 [testenv:mypy] deps =
