forked from microsoft/DLWorkspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
executable file
·38 lines (38 loc) · 1.05 KB
/
.travis.yml
File metadata and controls
executable file
·38 lines (38 loc) · 1.05 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
matrix:
include:
- language: ruby
rvm:
- 2.1
script: "cd docs && bundle install && bundle exec jekyll build"
- language: node_js
node_js: lts/*
before_install: cd src/dashboard
install: yarn --frozen-lockfile
script:
- 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 .