Skip to content

Commit 62fdfc9

Browse files
committed
Add yml files for test suites and unit tests
1 parent 5e70938 commit 62fdfc9

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ rxylib.CHECK_AND_BUILD_MacOSX.sh
1717

1818
# Test resources
1919
.travis.yml
20+
codecov.yml
21+
appveyor.yml
2022

appveyor.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# DO NOT CHANGE the "init" and "install" sections below
2+
# Download script file from GitHub
3+
init:
4+
ps: |
5+
$ErrorActionPreference = "Stop"
6+
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
7+
Import-Module '..\appveyor-tool.ps1'
8+
install:
9+
ps: Bootstrap
10+
11+
# Adapt as necessary starting from here
12+
13+
build_script:
14+
- travis-tool.sh install_deps
15+
16+
test_script:
17+
- travis-tool.sh run_tests
18+
19+
on_failure:
20+
- travis-tool.sh dump_logs
21+
22+
artifacts:
23+
- path: '*.Rcheck\**\*.log'
24+
name: Logs
25+
26+
- path: '*.Rcheck\**\*.out'
27+
name: Logs
28+
29+
- path: '*.Rcheck\**\*.fail'
30+
name: Logs
31+
32+
- path: '*.Rcheck\**\*.Rout'
33+
name: Logs
34+
35+
- path: '\*_*.tar.gz'
36+
name: Bits
37+
38+
- path: '\*_*.zip'
39+
name: Bits

codecov.yml

Whitespace-only changes.

0 commit comments

Comments
 (0)