-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy path.travis.yml
More file actions
executable file
·78 lines (78 loc) · 2.08 KB
/
.travis.yml
File metadata and controls
executable file
·78 lines (78 loc) · 2.08 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
matrix:
include:
- language: node_js
node_js: lts/*
before_install: cd src/dashboard
install: yarn --frozen-lockfile
script:
- npm run check:frontend
- npm run lint:backend
- npm run coverage:backend
after_success: npx nyc --nycrc-path server/.nycrc.js report --reporter=text-lcov | npx coveralls
- language: python
python: 3.6
before_install:
- cd src/docker-images/watchdog/test
install:
- pip install paramiko pyyaml requests prometheus_client twisted
script:
- python -m unittest discover .
- language: python
python: 3.6
before_install:
- cd src/docker-images/job-exporter/test
install:
- pip install prometheus_client
script:
- python3 -m unittest discover .
- language: python
python: 3.6
before_install:
- cd src/RepairManager/test
install:
- pip install pyyaml requests tabulate cachetools kubernetes
script:
- python -m unittest discover .
- language: python
python: 3.6
before_install:
- cd src/utils
script:
- python -m unittest discover .
- language: python
python: 3.6
before_install:
- pip -V
- python -V
- cd src/ClusterManager
install:
- pip install -r requirements.txt
script:
- python -m unittest test_cluster_status.py
- python -m unittest test_virtual_cluster_status.py
- python -m unittest test_mountpoint.py
- python -m unittest test_job_manager.py
- language: python
python: 3.6
before_install:
- cd src/StorageManager
install:
- pip install requests
script:
- python -m unittest discover .
- language: python
python: 3.6
before_install:
- cd src/docker-images/gpu-reporter/test
install:
- pip install pyyaml requests flask prometheus_client flask-cors
script:
- python -m unittest discover .
- language: python
python: 3.6
before_install:
- cd src/docker-images/job-insighter
install:
- pip install requests markdown_strings
script:
- python -m unittest discover .