add code coverage report

This commit is contained in:
Peter Zhokhov
2018-08-13 10:44:49 -07:00
parent 624231827c
commit 841da92f4d
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@@ -5,6 +5,7 @@
.pytest_cache .pytest_cache
.DS_Store .DS_Store
.idea .idea
.coverage
# Setuptools distribution and build folders. # Setuptools distribution and build folders.
/dist/ /dist/

View File

@@ -25,7 +25,8 @@ setup(name='baselines',
extras_require={ extras_require={
'test': [ 'test': [
'filelock', 'filelock',
'pytest' 'pytest',
'pytest-cov',
] ]
}, },
description='OpenAI baselines: high quality implementations of reinforcement learning algorithms', description='OpenAI baselines: high quality implementations of reinforcement learning algorithms',