Fix coverage tests to report proper coverage
[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
30 #eclipse
31 .project     
32 .pydevproject
33 .settings
34
35 #local stuff files that end in ".local" or folders called "local"
36 local
37 osm_lcm/local
38 osm_lcm/test/local
39
40 #local stuff files that end in ".temp" or folders called "temp"
41 *.temp
42 osm_lcm/temp
43 osm_lcm/test/temp
44
45 #distribution and package generation
46 build
47 dist
48 *.egg-info
49 .eggs
50
51 # Unit test / coverage reports
52 .coverage
53 cover
54 coverage.xml
55 nosetests.xml
56