We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6871ddf commit 5ce313eCopy full SHA for 5ce313e
.circleci/config.yml
@@ -32,8 +32,13 @@ jobs:
32
poetry run mypy --ignore-missing-imports nucleus
33
- run:
34
name: Pytest Test Cases
35
- command: | # Run test suite, uses SCALE_TEST_API_KEY env variable
36
- poetry run pytest
+ command: | # Run test suite, uses NUCLEUS_TEST_API_KEY env variable
+ poetry run coverage run -m pytest
37
+ poetry run coverage report
38
+ poetry run coverage html
39
+
40
+ - store_test_results:
41
+ path: htmlcov
42
pypi_publish:
43
docker:
44
- image: cimg/python:3.6
pyproject.toml
@@ -38,6 +38,7 @@ requests = "^2.25.1"
tqdm = "^4.60.0"
boto3 = "^1.17.53"
mypy = "^0.812"
+coverage = "^5.5"
[tool.poetry.dev-dependencies]
poetry = "^1.1.5"
0 commit comments