Skip to content

Commit

Permalink
Sync Template
Browse files Browse the repository at this point in the history
  • Loading branch information
Naveenaidu committed Mar 4, 2019
1 parent e52feb7 commit 4f781b8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
Expand All @@ -43,6 +45,7 @@ pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
Expand Down Expand Up @@ -77,6 +80,10 @@ target/
# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

Expand Down Expand Up @@ -107,6 +114,11 @@ venv.bak/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# VirtualEnv rules
# Virtualenv
Expand Down Expand Up @@ -238,6 +250,10 @@ flycheck_*.el
# directory configuration
.dir-locals.el

# network security
/network-security.data


# Vim rules
# Swap
[._]*.s[a-v][a-z]
Expand Down Expand Up @@ -322,6 +338,9 @@ fabric.properties
# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

# SublimeText rules
# Cache files for Sublime Text
*.tmlanguage.cache
Expand Down
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,8 @@ exclude_lines =
pragma Python [0-9.,]*${PYTHON_VERSION}[0-9.,]*: no cover
def message_link

partial_branches =
pragma: no ?branch
pragma.* ${PLATFORM_SYSTEM}: no branch
pragma.* ${OS_NAME}: no branch
[coverage:force_end_of_section]
10 changes: 8 additions & 2 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Radon requires colorama<0.4, but many other tools listed here will
# install a later version, so when pip tries to install radon it will
# ignore the dependency version difference and only fail when the
# bear is loaded.
colorama<0.4
# coverage 4.4.2 broke compatibility with coverage-config-reload-plugin
# and thus broke https://github.com/jayvdb/coverage_env_plugin .
# See https://github.com/jayvdb/coverage_config_reload_plugin/issues/1
coverage==4.4.1
coverage-env-plugin~=0.1
coverage-config-reload-plugin~=0.2
codecov~=2.0.5
moban~=0.2.4
moban~=0.3.3 ; python_version > '3.0'
packaging~=16.8
pytest~=3.6.1
pytest-cov~=2.4
Expand All @@ -20,6 +25,7 @@ pytest-timeout~=1.3.0
pytest-travis-fold~=1.3.0
pytest-xdist~=1.15
requests-mock~=1.2
pip!=9.0.2, !=10.0.*, !=18.0
ipdb~=0.11
pip<10
wheel~=0.29
vcrpy

0 comments on commit 4f781b8

Please sign in to comment.