| peusterm | dd55951 | 2017-09-21 16:29:34 +0200 | [diff] [blame] | 1 | # Copyright (c) 2017 SONATA-NFV and Paderborn University |
| 2 | # ALL RIGHTS RESERVED. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # Neither the name of the SONATA-NFV, Paderborn University |
| 17 | # nor the names of its contributors may be used to endorse or promote |
| 18 | # products derived from this software without specific prior written |
| 19 | # permission. |
| 20 | # |
| 21 | # This work has been performed in the framework of the SONATA project, |
| 22 | # funded by the European Commission under Grant number 671517 through |
| 23 | # the Horizon 2020 and 5G-PPP programmes. The authors would like to |
| 24 | # acknowledge the contributions of their colleagues of the SONATA |
| 25 | # partner consortium (www.sonata-nfv.eu). |
| 26 | |
| peusterm | 003b0cd | 2015-12-10 16:22:14 +0100 | [diff] [blame] | 27 | # Byte-compiled / optimized / DLL files |
| 28 | __pycache__/ |
| 29 | *.py[cod] |
| peusterm | dff1667 | 2016-02-02 16:47:41 +0100 | [diff] [blame] | 30 | *$py.class |
| 31 | |
| peusterm | 7adf90d | 2016-03-14 15:24:49 +0100 | [diff] [blame] | 32 | #IDE |
| 33 | .idea/ |
| peusterm | 003b0cd | 2015-12-10 16:22:14 +0100 | [diff] [blame] | 34 | |
| peusterm | 3700e08 | 2016-08-18 15:04:42 +0200 | [diff] [blame] | 35 | # virtualenv |
| 36 | venv |
| 37 | |
| peusterm | 0f52fc1 | 2016-06-08 17:55:04 +0900 | [diff] [blame] | 38 | # vagrant |
| 39 | .vagrant/ |
| 40 | |
| peusterm | 003b0cd | 2015-12-10 16:22:14 +0100 | [diff] [blame] | 41 | # C extensions |
| 42 | *.so |
| 43 | |
| 44 | # Distribution / packaging |
| 45 | .Python |
| 46 | env/ |
| 47 | build/ |
| 48 | develop-eggs/ |
| 49 | dist/ |
| 50 | downloads/ |
| 51 | eggs/ |
| 52 | .eggs/ |
| 53 | lib/ |
| 54 | lib64/ |
| 55 | parts/ |
| 56 | sdist/ |
| 57 | var/ |
| 58 | *.egg-info/ |
| 59 | .installed.cfg |
| 60 | *.egg |
| 61 | |
| 62 | # PyInstaller |
| 63 | # Usually these files are written by a python script from a template |
| 64 | # before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 65 | *.manifest |
| 66 | *.spec |
| 67 | |
| 68 | # Installer logs |
| 69 | pip-log.txt |
| 70 | pip-delete-this-directory.txt |
| 71 | |
| 72 | # Unit test / coverage reports |
| 73 | htmlcov/ |
| 74 | .tox/ |
| 75 | .coverage |
| 76 | .coverage.* |
| 77 | .cache |
| 78 | nosetests.xml |
| 79 | coverage.xml |
| 80 | *,cover |
| peusterm | dff1667 | 2016-02-02 16:47:41 +0100 | [diff] [blame] | 81 | .hypothesis/ |
| peusterm | 003b0cd | 2015-12-10 16:22:14 +0100 | [diff] [blame] | 82 | |
| 83 | # Translations |
| 84 | *.mo |
| 85 | *.pot |
| 86 | |
| 87 | # Django stuff: |
| 88 | *.log |
| 89 | |
| 90 | # Sphinx documentation |
| 91 | docs/_build/ |
| 92 | |
| 93 | # PyBuilder |
| 94 | target/ |
| peusterm | dff1667 | 2016-02-02 16:47:41 +0100 | [diff] [blame] | 95 | |
| 96 | #Ipython Notebook |
| 97 | .ipynb_checkpoints |
| peusterm | 7303abc | 2016-02-02 17:03:19 +0100 | [diff] [blame] | 98 | |
| cgeoffroy | 840f179 | 2016-03-03 16:53:52 +0100 | [diff] [blame] | 99 | #Pytest |
| 100 | .pytest.restart |
| cgeoffroy | f5a9169 | 2016-03-07 18:31:58 +0100 | [diff] [blame] | 101 | |
| 102 | # JUnit xml |
| peusterm | 7adf90d | 2016-03-14 15:24:49 +0100 | [diff] [blame] | 103 | utils/ci/junit-xml/*.xml |
| schillinge | 9622199 | 2019-03-14 22:41:52 +0100 | [diff] [blame] | 104 | |
| 105 | # charm builds |
| 106 | examples/charms/builds/ |
| 107 | examples/vnfs/**/charms/ |
| 108 | |
| 109 | # performance measurement results |
| 110 | examples/performance_measurements/*.csv |
| 111 | examples/autogenerated/ |
| 112 | !**/.gitkeep |