mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-09 05:59:15 +00:00
merge
This commit is contained in:
12
.github/workflows/testing.yml
vendored
12
.github/workflows/testing.yml
vendored
@@ -33,11 +33,9 @@ jobs:
|
|||||||
./tests.sh
|
./tests.sh
|
||||||
env:
|
env:
|
||||||
DOTDROP_WORKERS: 4
|
DOTDROP_WORKERS: 4
|
||||||
- name: Coveralls
|
- name: Upload coverage reports to Codecov
|
||||||
run: |
|
uses: codecov/codecov-action@v3
|
||||||
pip install coveralls
|
with:
|
||||||
coveralls --version
|
files: coverage.xml
|
||||||
coveralls --service=github
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
||||||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -13,6 +13,7 @@ venv
|
|||||||
.coverage*
|
.coverage*
|
||||||
htmlcov
|
htmlcov
|
||||||
coverages/
|
coverages/
|
||||||
|
coverage.xml
|
||||||
|
|
||||||
# IDE
|
# IDE
|
||||||
.idea/
|
.idea/
|
||||||
|
|||||||
2
README.md
vendored
2
README.md
vendored
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
[](https://github.com/deadc0de6/dotdrop/actions)
|
[](https://github.com/deadc0de6/dotdrop/actions)
|
||||||
[](https://dotdrop.readthedocs.io/en/latest/?badge=latest)
|
[](https://dotdrop.readthedocs.io/en/latest/?badge=latest)
|
||||||
[](https://coveralls.io/github/deadc0de6/dotdrop?branch=master)
|
[](https://codecov.io/github/deadc0de6/dotdrop)
|
||||||

|

|
||||||
|
|
||||||
[](https://pypi.python.org/pypi/dotdrop)
|
[](https://pypi.python.org/pypi/dotdrop)
|
||||||
|
|||||||
2
scripts/check-unittests.sh
vendored
2
scripts/check-unittests.sh
vendored
@@ -12,4 +12,4 @@ if [ -n "${WORKERS}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p coverages/
|
mkdir -p coverages/
|
||||||
coverage run -p --data-file coverages/coverage -m pytest tests -x
|
coverage run -p --data-file coverages/coverage --source=dotdrop -m pytest tests -x
|
||||||
Reference in New Issue
Block a user