diff options
author | stark, steven <ss820f@att.com> | 2018-03-29 12:54:39 -0700 |
---|---|---|
committer | stark, steven <ss820f@att.com> | 2018-03-29 12:59:00 -0700 |
commit | 72322e8a3823b823f9398fd99f2f99b5adba1871 (patch) | |
tree | 4085f5bec12fdb120d132f5993160eb5144e9657 /.gitignore | |
parent | f0db7dce31005b0dc17265851231eee6c2f98405 (diff) |
VNFRQTS Template for VNF Test Descriptions
Adding initial documents for documenatation build
Adding template for VNF Test Descriptions
Change-Id: I4b45a30c63edf5ce90060ce94185af72429c78d4
Issue-ID: VNFRQTS-53
Signed-off-by: stark, steven <ss820f@att.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a4d22a5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,106 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django: +*.log +local_settings.py + +# Flask: +instance/ +.webassets-cache + +# Scrapy: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# test-procedure +docs/conf.py +Makefile + +# Mac +*DS_Store* |