Replace another rmtree() with a better solution.
[mailman.git] / .gitlab-ci.yml
blob10eeb7725b1b7128c9c382d3e2c2773dd0ac22f5
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