mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
CI
This commit is contained in:
parent
d35acca21e
commit
83a9217c54
3 changed files with 8 additions and 2 deletions
6
.github/workflows/python-package.yml
vendored
6
.github/workflows/python-package.yml
vendored
|
@ -31,12 +31,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
make lint
|
make lint
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
env:
|
|
||||||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
||||||
run: |
|
run: |
|
||||||
make test-coverage
|
make test-coverage
|
||||||
- name: Coveralls
|
- name: Coveralls
|
||||||
uses: coverallsapp/github-action@master
|
uses: coverallsapp/github-action@master
|
||||||
|
env:
|
||||||
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
parallel: true
|
parallel: true
|
||||||
|
@ -47,6 +47,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Coveralls Finished
|
- name: Coveralls Finished
|
||||||
uses: coverallsapp/github-action@master
|
uses: coverallsapp/github-action@master
|
||||||
|
env:
|
||||||
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.github_token }}
|
github-token: ${{ secrets.github_token }}
|
||||||
parallel-finished: true
|
parallel-finished: true
|
2
Makefile
2
Makefile
|
@ -52,6 +52,8 @@ test-debug: ## run tests with debugging enabled
|
||||||
test-coverage: ## check code coverage quickly with the default Python
|
test-coverage: ## check code coverage quickly with the default Python
|
||||||
coverage run --source gitinspector -m pytest
|
coverage run --source gitinspector -m pytest
|
||||||
coverage report -m
|
coverage report -m
|
||||||
|
|
||||||
|
test-coverage-report: test-coverage ## Report coverage to Coveralls
|
||||||
coveralls
|
coveralls
|
||||||
|
|
||||||
release: dist ## package and upload a release
|
release: dist ## package and upload a release
|
||||||
|
|
|
@ -19,6 +19,8 @@ chardet==4.0.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2
|
||||||
click==7.1.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
|
click==7.1.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
|
||||||
colorama==0.4.4; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
|
colorama==0.4.4; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
|
||||||
coverage==5.4
|
coverage==5.4
|
||||||
|
coveralls==3.0.0
|
||||||
|
docopt==0.6.2
|
||||||
docutils==0.16; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
|
docutils==0.16; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
|
||||||
flake8==3.8.4
|
flake8==3.8.4
|
||||||
idna==2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
|
idna==2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
|
||||||
|
|
Loading…
Reference in a new issue