forked from quantumlib/OpenFermion-Cirq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (35 loc) · 939 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
sudo: false
language: python
branches:
only:
- master
before_install:
- pip install --upgrade pip setuptools wheel
matrix:
include:
- os: linux
env: NAME=mypy
python: "3.6.5"
install:
- cat dev_tools/conf/pip-list-dev-tools.txt | grep mypy | xargs pip install
script: check/mypy
- os: linux
env: NAME=pylint
python: "3.6.5"
install:
- cat dev_tools/conf/pip-list-dev-tools.txt | grep pylint | xargs pip install
script: check/pylint
- os: linux
env: NAME=pytest-and-incremental-coverage
python: "3.6.5"
install:
- pip install -r requirements.txt
- pip install -r dev_tools/conf/pip-list-dev-tools.txt
script: check/pytest-and-incremental-coverage master
- os: linux
env: NAME=pytest
python: "3.7"
install:
- pip install -r requirements.txt
- pip install -r dev_tools/conf/pip-list-dev-tools.txt
script: check/pytest