Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 6c978ee

Browse files
author
Jamie Snape
committed
Add Coveralls configuration
1 parent df0313d commit 6c978ee

File tree

6 files changed

+69
-2
lines changed

6 files changed

+69
-2
lines changed

.coveralls.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#=============================================================================
2+
# MIDAS Server
3+
# Copyright (c) Kitware SAS. 26 rue Louis Guérin. 69100 Villeurbanne, FRANCE
4+
# All rights reserved.
5+
# More information http://www.kitware.com
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0.txt
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
18+
#=============================================================================
19+
20+
---
21+
coverage_clover: ./log/clover.xml
22+
json_path: ./log/coveralls-upload.json
23+
src_dir: .

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
#=============================================================================
2+
# MIDAS Server
3+
# Copyright (c) Kitware SAS. 26 rue Louis Guérin. 69100 Villeurbanne, FRANCE
4+
# All rights reserved.
5+
# More information http://www.kitware.com
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0.txt
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
18+
#=============================================================================
19+
20+
---
121
language: php
222

323
php:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Midas Platform
55

66
_Version 3.x_
77

8-
[![Build Status](https://travis-ci.org/midasplatform/Midas.png?branch=master)](https://travis-ci.org/midasplatform/Midas)
8+
[![Build Status](https://travis-ci.org/midasplatform/Midas.svg)](https://travis-ci.org/midasplatform/Midas)
9+
[![Coverage Status](https://img.shields.io/coveralls/midasplatform/Midas.svg)](https://coveralls.io/r/midasplatform/Midas?)
910

1011
Overview
1112
--------

app.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
#=============================================================================
2+
# MIDAS Server
3+
# Copyright (c) Kitware SAS. 26 rue Louis Guérin. 69100 Villeurbanne, FRANCE
4+
# All rights reserved.
5+
# More information http://www.kitware.com
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0.txt
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
18+
#=============================================================================
19+
20+
---
121
application: your-appengine-project-id
222
version: 1
323
runtime: php
@@ -27,7 +47,7 @@ env_variables:
2747

2848
skip_files:
2949
- ^(.*/)?.*/(\.DS_Store|\.htaccess|\.gitignore|CMakeLists\.txt|.*\.java)$
30-
- ^(.*/)?(\.project|\.travis.yml|\.zfproject\.xml|composer\.json|COPYRIGHT|CTestConfig\.cmake|LICENSE|README\.md|Vagrantfile)$
50+
- ^(.*/)?(\.coveralls.yml|\.project|\.travis.yml|\.zfproject\.xml|composer\.json|COPYRIGHT|CTestConfig\.cmake|LICENSE|README\.md|Vagrantfile)$
3151
- ^(.*/)?core/configs/.*\.local\.ini$
3252
- ^(.*/)?(\.git|\.idea|\.vagrant|data|log|nbproject|provisioning|tests|tmp|utils)/.*
3353
- ^(.*/)?(core|modules/.*)/(database/pgsql|tests)/.*

cron-sample.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# Enable the task scheduler module and rename this file "cron.yaml".
23
cron:
34
- description: task scheduler job

phpunit.xml.dist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@
4242
<testsuite name="readmes">
4343
<directory>modules/readmes/tests</directory>
4444
</testsuite>
45+
<!--
4546
<testsuite name="remoteprocessing">
4647
<directory>modules/remoteprocessing/tests</directory>
4748
</testsuite>
49+
-->
4850
<testsuite name="sizequota">
4951
<directory>modules/sizequota/tests</directory>
5052
</testsuite>

0 commit comments

Comments
 (0)