forked from mitodl/mitx-grading-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (40 loc) · 909 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
42
43
# Travis continuous integration configuration file
matrix:
include:
- language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- pip install codecov
script:
- pytest --cov=mitxgraders --cov-report=term-missing
after_success:
- codecov
- language: python
python:
- "3.6"
dist: xenial
install:
- pip install -r requirements3.txt
- pip install codecov
script:
- pytest --cov=mitxgraders --cov-report=term-missing
after_success:
- codecov
- language: python
python:
- "3.7"
dist: xenial
install:
- pip install -r requirements3.txt
- pip install codecov
script:
- pytest --cov=mitxgraders --cov-report=term-missing
after_success:
- codecov
- language: node_js
node_js:
- "node"
before_install:
- "cd mitxgraders-js"