-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (27 loc) · 800 Bytes
/
.travis.yml
File metadata and controls
31 lines (27 loc) · 800 Bytes
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
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
before_install:
# Pull dependencies from GitHub
- cd ..
- git clone --depth=1 --branch=master git://github.com/textX/Arpeggio.git
- pip install -e Arpeggio
- git clone --depth=1 --branch=master git://github.com/textX/textX.git
- pip install -e textX
# Dependencies for startproject command
- git clone --depth=1 --branch=master git://github.com/textX/textx-lang-questionnaire.git
- pip install -e textx-lang-questionnaire
- git clone --depth=1 --branch=master git://github.com/textX/textX-jinja
- pip install -e textX-jinja
# Enter textX-dev directory
- cd textX-dev
install:
- ./install-test.sh
script:
- ./runtests.sh
after_success:
- coveralls