Fix the connection count tests.
[mailman.git] / .gitlab-ci.yml
blob94f8b1de7bf125688aeefff4f5e5f75683ee2953
1 # This is core test runner
3 image: maxking/mailman-ci-runner
5 variables:
6   POSTGRES_DB: "mailman_test"
7   POSTGRES_USER: "runner"
8   POSTGRES_PASSWORD: "runner"
9   MYSQL_ROOT_PASSWORD: "runner"
10   MYSQL_USER: "runner"
11   MYSQL_USER_PASSWORD: "runner"
12   MYSQL_DATABASE: "test_mailman"
14 qa:
15   script:
16   - tox -e qa
18 docs:
19   script:
20   - tox -e docs
22 sqlite:
23   script:
24   - tox -e py34,py35
26 pgsql:
27   services:
28   - postgres:latest
29   script:
30   - MAILMAN_EXTRA_TESTING_CFG=/home/runner/configs/postgres.cfg tox -e py34-pg,py35-pg
31   tags:
32   - postgres
34 mysql:
35   services:
36   - mysql:latest
37   script:
38   - MAILMAN_EXTRA_TESTING_CFG=/home/runner/configs/mysql.cfg tox -e py34-mysql,py35-mysql
39   tags:
40   - mysql