Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 1 | # PyCharm |
| 2 | .idea |
| 3 | exportToHTML |
| 4 | |
| 5 | # Emacs |
| 6 | *~ |
| 7 | .#* |
| 8 | |
| 9 | # Any vi swap files |
| 10 | *.swp |
| 11 | |
| 12 | # Editors |
| 13 | *.bak |
| 14 | *.project |
| 15 | *.pydevproject |
| 16 | |
| 17 | # Protobuf output files |
Matt Jeanneret | 6b6d936 | 2019-02-11 10:48:41 -0500 | [diff] [blame] | 18 | pyvoltha/**/*.desc |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 19 | **/*_pb2.py |
| 20 | **/*_pb2_grpc.py |
| 21 | |
| 22 | ### Python template |
| 23 | # Byte-compiled / optimized / DLL files |
| 24 | __pycache__/ |
| 25 | *.py[cod] |
| 26 | *$py.class |
| 27 | |
| 28 | # C extensions |
| 29 | *.so |
| 30 | |
| 31 | # Distribution / packaging |
| 32 | .Python |
| 33 | build/ |
| 34 | develop-eggs/ |
| 35 | dist/ |
| 36 | downloads/ |
| 37 | eggs/ |
| 38 | .eggs/ |
| 39 | lib/ |
| 40 | lib64/ |
| 41 | parts/ |
| 42 | sdist/ |
| 43 | var/ |
| 44 | wheels/ |
| 45 | *.egg-info/ |
| 46 | .installed.cfg |
| 47 | *.egg |
| 48 | MANIFEST |
| 49 | |
| 50 | # PyInstaller |
| 51 | # Usually these files are written by a python script from a template |
| 52 | # before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 53 | *.manifest |
| 54 | *.spec |
| 55 | |
| 56 | # Installer logs |
| 57 | pip-log.txt |
| 58 | pip-delete-this-directory.txt |
| 59 | |
| 60 | # Unit test / coverage reports |
| 61 | htmlcov/ |
| 62 | .tox/ |
| 63 | .coverage |
| 64 | .coverage.* |
| 65 | .cache |
| 66 | nosetests.xml |
| 67 | coverage.xmlcd |
| 68 | *.cover |
| 69 | |
| 70 | # Virtualenv |
| 71 | venv |
| 72 | venv-darwin |
| 73 | venv-linux |
| 74 | |
| 75 | # junit-coverage file |
Matt Jeanneret | 6b6d936 | 2019-02-11 10:48:41 -0500 | [diff] [blame] | 76 | **/junit-coverage.xml |