forked from sdispater/orator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
41 lines (34 loc) · 830 Bytes
/
tox.ini
File metadata and controls
41 lines (34 loc) · 830 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
32
33
34
35
36
37
38
39
40
41
[tox]
envlist = py{27,35,36}-{pymysql,mysqlclient}
[testenv]
whitelist_externals = poet
[testenv:py27-pymysql]
commands:
pip install -U pip
poet install -f mysql-python -f pgsql -q
py.test tests/ -sq
[testenv:py27-mysqlclient]
commands:
pip install -U pip
poet install -f mysql -f pgsql -q
py.test tests/ -sq
[testenv:py35-pymysql]
commands:
pip install -U pip
poet install -f mysql-python -f pgsql -q
py.test tests/ -sq
[testenv:py35-mysqlclient]
commands:
pip install -U pip
poet install -f mysql -f pgsql -q
py.test tests/ -sq
[testenv:py36-pymysql]
commands:
pip install -U pip
poet install -f mysql-python -f pgsql -q
py.test tests/ -sq
[testenv:py36-mysqlclient]
commands:
pip install -U pip
poet install -f mysql -f pgsql -q
py.test tests/ -sq