Skip to content
Snippets Groups Projects
Commit 10105c43 authored by Alok Saldanha's avatar Alok Saldanha
Browse files

added support for code coverage

parent 638923fb
No related merge requests found
[run]
branch = True
source = cellxgene_gateway
[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
tests/*
\ No newline at end of file
...@@ -45,5 +45,16 @@ jobs: ...@@ -45,5 +45,16 @@ jobs:
run: | run: |
eval "$(conda shell.bash hook)" eval "$(conda shell.bash hook)"
conda activate cellxgene-gateway conda activate cellxgene-gateway
python -m unittest discover tests coverage run -m unittest discover tests
bash <(curl -s https://codecov.io/bash)
- name: Check coverage
run: |
eval "$(conda shell.bash hook)"
conda activate cellxgene-gateway
coverage report --fail-under 41
coverage xml -i
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
...@@ -55,6 +55,7 @@ htmlcov/ ...@@ -55,6 +55,7 @@ htmlcov/
.nox/ .nox/
.coverage .coverage
.coverage.* .coverage.*
htmlcov
.cache .cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml
......
...@@ -140,6 +140,12 @@ pre-commit install ...@@ -140,6 +140,12 @@ pre-commit install
python -m unittest discover tests python -m unittest discover tests
``` ```
## Code Coverage
```bash
coverage run -m unittest discover tests
coverage html
```
## Running Linters ## Running Linters
pip install isort flake8 black pip install isort flake8 black
......
...@@ -7,6 +7,7 @@ dependencies: ...@@ -7,6 +7,7 @@ dependencies:
- flask - flask
- psutil - psutil
- black - black
- coverage
- pip - pip
- pip: - pip:
- flask-api - flask-api
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment