]> git.phdru.name Git - sqlconvert.git/blob - tox.ini
CI(GHActions): Run tests on w32
[sqlconvert.git] / tox.ini
1 [tox]
2 minversion = 3.15
3 envlist = py27,py3{4,5,6,7,8,9}{,-sqlite},py{27,39}-flake8
4
5 # Base test environment settings
6 [testenv]
7 basepython =
8     py27: {env:TOXPYTHON:python2.7}
9     py34: {env:TOXPYTHON:python3.4}
10     py35: {env:TOXPYTHON:python3.5}
11     py36: {env:TOXPYTHON:python3.6}
12     py37: {env:TOXPYTHON:python3.7}
13     py38: {env:TOXPYTHON:python3.8}
14     py39: {env:TOXPYTHON:python3.9}
15 commands =
16     {envpython} --version
17     {envpython} -c "import struct; print(struct.calcsize('P') * 8)"
18 deps =
19     pip < 19.2
20     setuptools < 44
21     -rdevscripts/requirements/requirements_tests.txt
22     postgres: psycopg2-binary
23 passenv = PGPASSWORD
24 setenv =
25     VIRTUALENV_PIP = 19.1.1
26 platform = linux|win32
27 # Don't fail or warn on uninstalled commands
28 whitelist_externals =
29     createdb
30     dropdb
31
32 [testenv:{py27,py34,py35,py36,py37,py38,py39}]
33 commands =
34     {[testenv]commands}
35     {envpython} -m pytest
36     {envpython} {envbindir}/mysql2sql -P demo/demo.sql test.out
37     cmp.py -i tests/mysql2sql/test.out test.out
38     rm.py -f test.out
39
40 [testenv:{py27,py34,py35,py36,py37,py38,py39}-sqlite]
41 commands =
42     {[testenv]commands}
43     -rm.py -f /tmp/test.sqdb
44     {envpython} -m pytest -D sqlite:///tmp/test.sqdb
45     rm.py -f /tmp/test.sqdb
46
47 [testenv:{py27,py34,py35,py36,py37,py38,py39}-sqlite-w32]
48 platform = win32
49 commands =
50     {[testenv]commands}
51     -rm.py -f {env:TEMP}/test.sqdb
52     pytest -D sqlite:/{env:TEMP}/test.sqdb?debug=1
53     rm.py -f {env:TEMP}/test.sqdb
54
55 [testenv:{py27,py34,py35,py36,py37,py38,py39}-postgres{,-w32}]
56 commands =
57     {[testenv]commands}
58     -dropdb --username=runner test
59     createdb --username=runner test
60     {envpython} -m pytest -D postgres://runner:test@localhost/test
61     dropdb --username=runner test
62
63 # flake8
64 [testenv:{py27,py34,py35,py36,py37,py38,py39}-flake8]
65 deps =
66     flake8
67 commands =
68     {[testenv]commands}
69     flake8