committed by
Rossen
6 changed files with 47 additions and 17 deletions
@ -1,5 +1,14 @@ |
|||||
|
|
||||
|
# Docs: https://coverage.readthedocs.org/en/latest/config.html |
||||
|
|
||||
[run] |
[run] |
||||
concurrency = gevent |
concurrency = gevent |
||||
omit = |
omit = |
||||
steam/protobufs/* |
steam/protobufs/* |
||||
steam/enums/* |
steam/enums/* |
||||
|
|
||||
|
branch = False |
||||
|
|
||||
|
# If True, stores relative file paths in data file (needed for Github Actions). |
||||
|
# Using this parameter requires coverage>=5.0 |
||||
|
relative_files = True |
||||
|
@ -0,0 +1,12 @@ |
|||||
|
|
||||
|
-r requirements.txt |
||||
|
|
||||
|
vcrpy==2.0.1 |
||||
|
mock==1.3.0 |
||||
|
|
||||
|
coverage>=5.0; python_version == '2.7' or python_version >= '3.5' |
||||
|
pytest-cov>=2.7.0; python_version == '2.7' or python_version >= '3.5' |
||||
|
|
||||
|
# coveralls 2.0 has removed support for Python 2.7 and 3.4 |
||||
|
git+https://github.com/andy-maier/coveralls-python.git@andy/add-py27#egg=coveralls; python_version == '2.7' |
||||
|
coveralls>=2.1.2; python_version >= '3.5' |
Loading…
Reference in new issue