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 c8c2cba commit 425552bCopy full SHA for 425552b
.circleci/config.yml
@@ -16,7 +16,11 @@ jobs:
16
name: run tests
17
command: |
18
. venv/bin/activate
19
- pytest -v -s --cov=ark --cov-config=.coveragerc --cov-report xml
+ pytest -v -s --cov=crypto --cov-config=.coveragerc --cov-report xml
20
+ - run:
21
+ name: Codecov
22
+ when: on_success
23
+ command: bash <(curl -s https://codecov.io/bash)
24
- store_artifacts:
25
path: test-reports
26
destination: test-reports
.coveragerc
@@ -1,2 +1,13 @@
1
[run]
2
branch = True
3
+source = crypto
4
+
5
+[report]
6
+exclude_lines =
7
+ if self.debug:
8
+ pragma: no cover
9
+ raise NotImplementedError
10
+ if __name__ == .__main__.:
11
+ignore_errors = True
12
+omit =
13
+ tests/*
0 commit comments