File tree Expand file tree Collapse file tree 2 files changed +63
-9
lines changed Expand file tree Collapse file tree 2 files changed +63
-9
lines changed Original file line number Diff line number Diff line change
1
+ sudo : false
2
+
3
+ language : python
4
+
5
+ python :
6
+ - " 2.7"
7
+ - " 3.4"
8
+ - " pypy"
9
+
10
+ env :
11
+ - SQLA_VERSION=0.9
12
+ - SQLA_VERSION=1.0
13
+ - SQLA_VERSION=1.1
14
+ - SQLA_VERSION=dev
15
+
16
+ install :
17
+ - pip install tox-travis
18
+ - pip install codecov
19
+
20
+ script :
21
+ - tox
22
+
23
+ after_success :
24
+ - codecov
Original file line number Diff line number Diff line change 2
2
commands =
3
3
python -m unittest tests
4
4
5
- [testenv:py27sqla-09]
5
+ [travis]
6
+ python =
7
+ 2.7: py27
8
+ 3.4: py34
9
+ pypy: pypy
10
+
11
+ [travis:env]
12
+ SQLA_VERSION =
13
+ 0.9: sqla09
14
+ 1.0: sqla10
15
+ 1.1: sqla11
16
+ dev: sqladev
17
+
18
+ [testenv:py27-sqla09]
6
19
basepython = python2.7
7
20
deps =
8
21
mock
9
22
https://github.com/zzzeek/sqlalchemy/archive/rel_0_9.zip
10
23
11
- [testenv:py27sqla-10 ]
24
+ [testenv:py27-sqla10 ]
12
25
basepython = python2.7
13
26
deps =
14
27
mock
15
28
https://github.com/zzzeek/sqlalchemy/archive/rel_1_0.zip
16
29
17
- [testenv:py27sqla-dev]
30
+ [testenv:py27-sqla11]
31
+ basepython = python2.7
32
+ deps =
33
+ mock
34
+ https://github.com/zzzeek/sqlalchemy/archive/rel_1_1.zip
35
+
36
+ [testenv:py27-sqladev]
18
37
basepython = python2.7
19
38
deps =
20
39
mock
21
40
https://github.com/zzzeek/sqlalchemy/archive/master.zip
22
41
23
- [testenv:py34sqla-09 ]
42
+ [testenv:py34-sqla09 ]
24
43
basepython = python3.4
25
44
deps =
26
45
https://github.com/zzzeek/sqlalchemy/archive/rel_0_9.zip
27
46
28
- [testenv:py34sqla-10 ]
47
+ [testenv:py34-sqla10 ]
29
48
basepython = python3.4
30
49
deps =
31
50
https://github.com/zzzeek/sqlalchemy/archive/rel_1_0.zip
32
51
33
- [testenv:py34sqla-dev]
52
+ [testenv:py34-sqla11]
53
+ basepython = python3.4
54
+ deps =
55
+ https://github.com/zzzeek/sqlalchemy/archive/rel_1_1.zip
56
+
57
+ [testenv:py34-sqladev]
34
58
basepython = python3.4
35
59
deps =
36
60
https://github.com/zzzeek/sqlalchemy/archive/master.zip
37
61
38
62
39
- [testenv:pypysqla-09 ]
63
+ [testenv:pypy-sqla09 ]
40
64
basepython = pypy
41
65
deps =
42
66
mock
43
67
https://github.com/zzzeek/sqlalchemy/archive/rel_0_9.zip
44
68
45
- [testenv:pypysqla-10 ]
69
+ [testenv:pypy-sqla10 ]
46
70
basepython = pypy
47
71
deps =
48
72
mock
49
73
https://github.com/zzzeek/sqlalchemy/archive/rel_1_0.zip
50
74
51
- [testenv:pypysqla-dev]
75
+ [testenv:pypy-sqla11]
76
+ basepython = pypy
77
+ deps =
78
+ mock
79
+ https://github.com/zzzeek/sqlalchemy/archive/rel_1_1.zip
80
+
81
+ [testenv:pypy-sqladev]
52
82
basepython = pypy
53
83
deps =
54
84
mock
You can’t perform that action at this time.
0 commit comments