forked from sdispater/orator
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
42 lines (35 loc) · 995 Bytes
/
tox.ini
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
[tox]
isolated_build = true
envlist = py{27,35,36,37}-{pymysql,mysqlclient}
[testenv]
whitelist_externals = poetry
[testenv:py27-pymysql]
commands:
poetry run pip install -U pip
poetry install -E mysql-python -E pgsql -v
poetry run pytest tests/ -sq
[testenv:py27-mysqlclient]
commands:
poetry run pip install -U pip
poetry install -E mysql -E pgsql -v
poetry run pytest tests/ -sq
[testenv:py35-pymysql]
commands:
poetry run pip install -U pip
poetry install -E mysql-python -E pgsql -v
poetry run pytest tests/ -sq
[testenv:py35-mysqlclient]
commands:
poetry run pip install -U pip
poetry install -E mysql -E pgsql -v
poetry run pytest tests/ -sq
[testenv:py36-pymysql]
commands:
poetry run pip install -U pip
poetry install -E mysql-python -E pgsql -v
poetry run pytest tests/ -sq
[testenv:py36-mysqlclient]
commands:
poetry run pip install -U pip
poetry install -E mysql -E pgsql -v
poetry run pytest tests/ -sq