-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
64 lines (58 loc) · 1.72 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
language: python
# cache pip dependency
cache: pip
sudo: required
jobs:
include:
- python: "2.7"
install:
- pip install -r requirements.txt
script:
- sudo env "PATH=$PATH" python --version # environment check
- sudo env "PATH=$PATH" python -c 'import psutil' # ensure deps are installed.
# Some tests do not pass on travis-ci.
# E.g.: redis, mysql, zookeeper, etcd needs a docker to test.
# Disable them temporarily.
# -- by xp 2020 Jan 27
# Enable debug log: UT_DEBUG=1
- >-
sudo env "PATH=$PATH" ./script/run-test
argchecker
aws
awssign
cacheable
cachepool
cgrouparch
csvutil
daemonize
dictutil
ectypes
fsutil
heap
httpmultipart
humannum
jobq
jobscheduler
logcollector
logutil
mathtoy
mime
modutil
net
p3json
portlock
priorityqueue
proc
profiling
rangeset
ratelimiter
request
shell
strutil
threadutil
timeutil
utfjson
utfyaml
wsjobd
# after_success:
# - pip install python-coveralls && coveralls