replace coveralls action with temp code

This commit is contained in:
Gonçalo Valério 2021-01-20 19:22:55 +00:00
parent 6af47b006a
commit 0a74811b7a
2 changed files with 7 additions and 7 deletions

View File

@ -25,9 +25,5 @@ jobs:
- name: Run Tests
run: tox -e py${{ matrix.python_version }}-django${{ matrix.django_version }}
- name: Coveralls
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: .coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -6,11 +6,15 @@ envlist =
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/django_cryptolock
COVERAGE_FILE = .coverage
commands = pytest --cov=django_cryptolock tests/
passenv = GITHUB_*
commands =
pytest --cov=django_cryptolock tests/
coveralls
deps =
django2.2: django>=2.2,<3.0
django3.1: django>=3.1,<3.2
-r {toxinidir}/requirements_test.txt
coveralls
basepython =
py3.8: python3.8
py3.7: python3.7