fix 1214: change timeout from 10min to 5min for k8s cluster creation
[osm/LCM.git] / .gitignore-common
1 ##
2 # Licensed under the Apache License, Version 2.0 (the "License"); you may
3 # not use this file except in compliance with the License. You may obtain
4 # a copy of the License at
5 #
6 #         http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11 # License for the specific language governing permissions and limitations
12 # under the License.
13 ##
14
15 # This is a template with common files to be igonored, after clone make a copy to .gitignore
16 # cp .gitignore-common .gitignore
17
18 *.pyc
19 *.pyo
20
21 # auto-ignore
22 .gitignore
23
24 # logs
25 logs 
26
27 # pycharm
28 .idea
29 venv
30
31 # tox
32 .tox
33
34 # eclipse
35 .project     
36 .pydevproject
37 .settings
38
39 # local stuff files that end in ".local" or folders called "local"
40 local
41 osm_lcm/local
42 osm_lcm/test/local
43
44 # local stuff files that end in ".temp" or folders called "temp"
45 *.temp
46 osm_lcm/temp
47 osm_lcm/test/temp
48
49 # distribution and package generation
50 build
51 dist
52 *.egg-info
53 .eggs
54
55 # Unit test / coverage reports
56 .coverage
57 cover
58 coverage.xml
59 nosetests.xml
60