We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0785df6 commit 0eee8feCopy full SHA for 0eee8fe
circle.yml
@@ -3,9 +3,13 @@ machine:
3
version: '3.5.2'
4
5
dependencies:
6
- post:
7
- - pip install -r test-requirements.txt -r fast-requirements.txt
+ override:
+ - pip install -e .[fast]
8
+ - pip install -r test-requirements.txt
9
10
test:
11
override:
- - pytest test
12
+ - pytest --cov
13
+ post:
14
+ - bash <(curl -s https://codecov.io/bash)
15
+
setup.cfg
@@ -0,0 +1,15 @@
1
+[tool:pytest]
2
+norecursedirs =
+ .git
+ dist
+ build
+ .tox
+ venv
+ .env
+ env
+testpaths =
+ test
+[coverage:run]
+branch = True
+source = structlog_pretty
test-requirements.txt
@@ -1 +1,2 @@
pytest==3.*
+pytest-cov==2.*
0 commit comments