forked from metomi/rose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (34 loc) · 826 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Configuration for running Rose test battery on Travis CI
# See https://travis-ci.org/ for more info.
---
language: python
python:
- 3.7
dist: xenial
before_install:
- export PATH="$PWD/.travis:$PATH"
after_success:
- now report coverage
after_failure:
- now report error
jobs:
include:
- name: "Unit Tests"
install:
- now install coverage linters pytest cylc rose
script:
- now test style
- now test units
- name: "Test Battery"
before_install:
- export PATH="$PWD/.travis:$PATH"
- now install coverage fcm tut_suite
install:
- now install cylc rose
script:
- now test battery
- name: "Documentation"
install:
- now install coverage rose sphinx tut_suite
script:
- now test docs